diff options
author | 2022-04-21 10:09:08 -0400 | |
---|---|---|
committer | 2022-04-21 15:59:57 -0400 | |
commit | 72f05e3b96b25ebbc572938b9fd8a1e930834eb2 (patch) | |
tree | 15da7ef102fbed9a9ed9e007a48a81006344c9a0 | |
parent | drm/amd/display: Fix memory leak in dcn21_clock_source_create (diff) | |
download | wireguard-linux-72f05e3b96b25ebbc572938b9fd8a1e930834eb2.tar.xz wireguard-linux-72f05e3b96b25ebbc572938b9fd8a1e930834eb2.zip |
drm/amdgpu/display: make hubp31_program_extended_blank static
It's not used outside of dcn31_hubp.c.
Reviewed-by: Harry Wentland <harry.wentland@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hubp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hubp.c b/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hubp.c index 8ae6117953ca..197a5cae068b 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hubp.c +++ b/drivers/gpu/drm/amd/display/dc/dcn31/dcn31_hubp.c @@ -54,7 +54,8 @@ void hubp31_soft_reset(struct hubp *hubp, bool reset) REG_UPDATE(DCHUBP_CNTL, HUBP_SOFT_RESET, reset); } -void hubp31_program_extended_blank(struct hubp *hubp, unsigned int min_dst_y_next_start_optimized) +static void hubp31_program_extended_blank(struct hubp *hubp, + unsigned int min_dst_y_next_start_optimized) { struct dcn20_hubp *hubp2 = TO_DCN20_HUBP(hubp); |