summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYang Li <yang.lee@linux.alibaba.com>2023-12-14 09:01:54 +0800
committerAlex Deucher <alexander.deucher@amd.com>2023-12-14 15:28:11 -0500
commit804c49ef30735d70c1df0c58ebec313149a3933c (patch)
treee033e03ae367e4d567d4739f47c785ae60e5251b
parentafe58346d5d3887b3e49ff623d2f2e471f232a8d (diff)
downloadlinux-stable-804c49ef30735d70c1df0c58ebec313149a3933c.tar.gz
linux-stable-804c49ef30735d70c1df0c58ebec313149a3933c.tar.bz2
linux-stable-804c49ef30735d70c1df0c58ebec313149a3933c.zip
drm/amd/pm: Remove unneeded semicolon
./drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c:1418:2-3: Unneeded semicolon Reported-by: Abaci Robot <abaci@linux.alibaba.com> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=7743 Signed-off-by: Yang Li <yang.lee@linux.alibaba.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
-rw-r--r--drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
index d409857fd622..c16703868e5c 100644
--- a/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
+++ b/drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c
@@ -1415,7 +1415,7 @@ static int smu_wbrf_event_handler(struct notifier_block *nb,
break;
default:
return NOTIFY_DONE;
- };
+ }
return NOTIFY_OK;
}