Commit 34a24462 authored by Tom Rix's avatar Tom Rix Committed by Alex Deucher
Browse files

drm/amd/display: set should_disable_otg storage-class-specifier to static



smatch reports
drivers/gpu/drm/amd/amdgpu/../display/dc/clk_mgr/dcn315/dcn315_clk_mgr.c:90:6:
  warning: symbol 'should_disable_otg' was not declared. Should it be static?

should_disable_otg() is only used in dcn315_clk_mgr.c, so it should be static

Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 4d2c6e89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -87,7 +87,7 @@ static int dcn315_get_active_display_cnt_wa(
	return display_count;
}

bool should_disable_otg(struct pipe_ctx *pipe)
static bool should_disable_otg(struct pipe_ctx *pipe)
{
	bool ret = true;