summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c
diff options
context:
space:
mode:
authorTom Rix <trix@redhat.com>2023-03-05 07:52:26 -0500
committerAlex Deucher <alexander.deucher@amd.com>2023-03-07 14:22:42 -0500
commitb79f85b7aa5a9ff9f702f40c6a5fe4a53e965cf6 (patch)
tree4819a887767b0060fcff63e9b9f264cc43157200 /drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c
parent5fd1bea5c23bb921720b6c48ceba5d6415f2ed02 (diff)
downloadlinux-stable-b79f85b7aa5a9ff9f702f40c6a5fe4a53e965cf6.tar.gz
linux-stable-b79f85b7aa5a9ff9f702f40c6a5fe4a53e965cf6.tar.bz2
linux-stable-b79f85b7aa5a9ff9f702f40c6a5fe4a53e965cf6.zip
drm/amd/display: change several dcn30 variables storage-class-specifier to static
smatch reports these similar problems in dcn30 drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_dwb.c:223:25: warning: symbol 'dcn30_dwbc_funcs' was not declared. Should it be static? drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_mmhubbub.c:214:28: warning: symbol 'dcn30_mmhubbub_funcs' was not declared. Should it be static? drivers/gpu/drm/amd/amdgpu/../display/dc/dcn30/dcn30_mpc.c:1402:24: warning: symbol 'dcn30_mpc_funcs' was not declared. Should it be static? All of these are only used in their definition file, so they should be static Signed-off-by: Tom Rix <trix@redhat.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c')
-rw-r--r--drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c b/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c
index ad1c1b703874..6cf40c1332bc 100644
--- a/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c
+++ b/drivers/gpu/drm/amd/display/dc/dcn30/dcn30_mpc.c
@@ -1399,7 +1399,7 @@ static void mpc3_set_mpc_mem_lp_mode(struct mpc *mpc)
}
}
-const struct mpc_funcs dcn30_mpc_funcs = {
+static const struct mpc_funcs dcn30_mpc_funcs = {
.read_mpcc_state = mpc1_read_mpcc_state,
.insert_plane = mpc1_insert_plane,
.remove_mpcc = mpc1_remove_mpcc,