diff options
| author | Tom Rix <trix@redhat.com> | 2020-10-27 13:07:08 -0700 |
|---|---|---|
| committer | Alex Deucher <alexander.deucher@amd.com> | 2020-10-30 01:03:02 -0400 |
| commit | 0b924cd60d43f411f3133fbb39c1e4c82c7b2b18 (patch) | |
| tree | 2e3bf77191d4615c01ad9259a64858eb4ae8c0c8 /drivers/gpu/drm/amd/display/dc/dce112/dce112_resource.c | |
| parent | drm/amdgpu: remove unneeded semicolon (diff) | |
| download | linux-0b924cd60d43f411f3133fbb39c1e4c82c7b2b18.tar.gz linux-0b924cd60d43f411f3133fbb39c1e4c82c7b2b18.zip | |
drm/amd/display: remove unneeded semicolon
A semicolon is not needed after a switch statement.
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/dce112/dce112_resource.c')
| -rw-r--r-- | drivers/gpu/drm/amd/display/dc/dce112/dce112_resource.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/dce112/dce112_resource.c b/drivers/gpu/drm/amd/display/dc/dce112/dce112_resource.c index bae2cc4fdd8d..f99b1c084590 100644 --- a/drivers/gpu/drm/amd/display/dc/dce112/dce112_resource.c +++ b/drivers/gpu/drm/amd/display/dc/dce112/dce112_resource.c @@ -858,7 +858,7 @@ static struct clock_source *find_matching_pll( return pool->clock_sources[DCE112_CLK_SRC_PLL5]; default: return NULL; - }; + } return 0; } |
