drm/amd/display: remove unneeded semicolon
authorTom Rix <trix@redhat.com>
Tue, 27 Oct 2020 20:07:08 +0000 (13:07 -0700)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 30 Oct 2020 05:03:02 +0000 (01:03 -0400)
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>
drivers/gpu/drm/amd/display/dc/dce112/dce112_resource.c
drivers/gpu/drm/amd/display/modules/hdcp/hdcp_log.c

index bae2cc4..f99b1c0 100644 (file)
@@ -858,7 +858,7 @@ static struct clock_source *find_matching_pll(
                return pool->clock_sources[DCE112_CLK_SRC_PLL5];
        default:
                return NULL;
-       };
+       }
 
        return 0;
 }
index fb6a19d..ee5230c 100644 (file)
@@ -280,6 +280,6 @@ char *mod_hdcp_state_id_to_str(int32_t id)
                return "D2_A9_VALIDATE_STREAM_READY";
        default:
                return "UNKNOWN_STATE_ID";
-       };
+       }
 }