diff options
author | Yang Li <[email protected]> | 2023-12-14 09:01:54 +0800 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2023-12-14 15:28:11 -0500 |
commit | 804c49ef30735d70c1df0c58ebec313149a3933c (patch) | |
tree | e033e03ae367e4d567d4739f47c785ae60e5251b | |
parent | afe58346d5d3887b3e49ff623d2f2e471f232a8d (diff) |
drm/amd/pm: Remove unneeded semicolon
./drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c:1418:2-3: Unneeded semicolon
Reported-by: Abaci Robot <[email protected]>
Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=7743
Signed-off-by: Yang Li <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/pm/swsmu/amdgpu_smu.c | 2 |
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; } |