aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkernel test robot <[email protected]>2020-10-13 05:20:49 +0800
committerAlex Deucher <[email protected]>2020-10-14 15:13:48 -0400
commit206b737240c36d3f1ddc7a1a68f13e59ad071022 (patch)
tree550a1b092c6539d7e10c39f471b61cda34b67617
parentcde3359acb42074b090971e287449cb9e7467cdc (diff)
drm/amdgpu: fix semicolon.cocci warnings
drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.c:608:2-3: Unneeded semicolon Remove unneeded semicolon. Generated by: scripts/coccinelle/misc/semicolon.cocci Fixes: b4a7db71ea06 ("drm/amdgpu: add per device user friendly xgmi events for vega20") CC: Jonathan Kim <[email protected]> Signed-off-by: kernel test robot <[email protected]> Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r--drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.c
index 1b213c4ddfcb..19c0a3655228 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_pmu.c
@@ -654,7 +654,7 @@ int amdgpu_pmu_init(struct amdgpu_device *adev)
default:
return 0;
- };
+ }
return ret;
}