diff options
author | Hong-lu Cheng <[email protected]> | 2023-09-14 11:32:56 -0400 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2023-09-26 17:00:22 -0400 |
commit | 40de8403b998020a7bf3e356ef64feefa77f096b (patch) | |
tree | f15e2085b6b0cc34d47f69f6a1eec061d589feb9 | |
parent | 5fad7d8cc4d425524f39cc7202a8211184ac4657 (diff) |
drm/amd/display: Update OPP counter from new interface
[Description]
Change to new interface for notifying OS of cursor support changes
Reviewed-by: Gang Chu <[email protected]>
Reviewed-by: Jaina Han <[email protected]>
Reviewed-by: Jun Lei <[email protected]>
Acked-by: Wayne Lin <[email protected]>
Signed-off-by: Hong-lu Cheng <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/core/dc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc.c b/drivers/gpu/drm/amd/display/dc/core/dc.c index 76db20b90302..c5a74b202bc8 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc.c @@ -3507,7 +3507,7 @@ static void wait_for_outstanding_hw_updates(struct dc *dc, const struct dc_state */ int pipe_idx; int opp_inst; - int opp_count = dc->res_pool->pipe_count; + int opp_count = dc->res_pool->res_cap->num_opp; struct hubp *hubp; int mpcc_inst; const struct pipe_ctx *pipe_ctx; |