drm/amdgpu: remove unneeded semicolon
authorTom Rix <trix@redhat.com>
Tue, 27 Oct 2020 19:07:26 +0000 (12:07 -0700)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 30 Oct 2020 05:02:26 +0000 (01:02 -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/amdgpu/amdgpu_ras.c

index de312e8..cf7a79a 100644 (file)
@@ -955,7 +955,7 @@ static char *amdgpu_ras_badpage_flags_str(unsigned int flags)
        case AMDGPU_RAS_RETIRE_PAGE_FAULT:
        default:
                return "F";
-       };
+       }
 }
 
 /**