Commit 25457a1f authored by Rikard Falkeborn's avatar Rikard Falkeborn Committed by Alex Deucher

drm/amd/display: Constify dcn20_res_pool_funcs

The only usage of dcn20_res_pool_funcs is to assign its address to a
const pointer. Make it const to allow the compiler to put it in
read-only memory.
Signed-off-by: default avatarRikard Falkeborn <rikard.falkeborn@gmail.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 34b0c779
...@@ -3320,7 +3320,7 @@ enum dc_status dcn20_patch_unknown_plane_state(struct dc_plane_state *plane_stat ...@@ -3320,7 +3320,7 @@ enum dc_status dcn20_patch_unknown_plane_state(struct dc_plane_state *plane_stat
return DC_OK; return DC_OK;
} }
static struct resource_funcs dcn20_res_pool_funcs = { static const struct resource_funcs dcn20_res_pool_funcs = {
.destroy = dcn20_destroy_resource_pool, .destroy = dcn20_destroy_resource_pool,
.link_enc_create = dcn20_link_encoder_create, .link_enc_create = dcn20_link_encoder_create,
.panel_cntl_create = dcn20_panel_cntl_create, .panel_cntl_create = dcn20_panel_cntl_create,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment