diff options
author | Yongqiang Sun <[email protected]> | 2017-11-16 12:43:59 -0500 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2017-12-14 10:52:19 -0500 |
commit | c1fba8204b909d195f9dc4a638921260ac792124 (patch) | |
tree | 289dd4e1f171ae883be55978bd37bdebd93e1bf6 | |
parent | 52924dc3d0daf725a63f5c749cb263aad06f928a (diff) |
drm/amd/display: Fixed read wrong reg to get bot_sel.
Signed-off-by: Yongqiang Sun <[email protected]>
Reviewed-by: Tony Cheng <[email protected]>
Acked-by: Harry Wentland <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c index e926c29993f9..a13d25d1c568 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c +++ b/drivers/gpu/drm/amd/display/dc/dcn10/dcn10_mpc.c @@ -372,7 +372,7 @@ void mpc1_init_mpcc_list_from_hw( for (mpcc_id = 0; mpcc_id < mpc10->num_mpcc; mpcc_id++) { REG_GET(MPCC_OPP_ID[mpcc_id], MPCC_OPP_ID, &opp_id); REG_GET(MPCC_TOP_SEL[mpcc_id], MPCC_TOP_SEL, &top_sel); - REG_GET(MPCC_STATUS[mpcc_id], MPCC_BOT_SEL, &bot_sel); + REG_GET(MPCC_BOT_SEL[mpcc_id], MPCC_BOT_SEL, &bot_sel); if ((opp_id == tree->opp_id) && (top_sel != 0xf)) { mpcc = mpc1_get_mpcc(mpc, mpcc_id); |