From: Colin Ian King Date: Tue, 17 Sep 2024 12:08:56 +0000 (+0100) Subject: drm/nouveau/gsp: remove extraneous ; after mutex X-Git-Tag: v6.12-rc3~21^2~1^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=301d194d01f3074efcf3a10eae116fcddb76788a;p=thirdparty%2Flinux.git drm/nouveau/gsp: remove extraneous ; after mutex The mutex field has two following semicolons, replace this with just one semicolon. Signed-off-by: Colin Ian King Signed-off-by: Danilo Krummrich Link: https://patchwork.freedesktop.org/patch/msgid/20240917120856.1877733-1-colin.i.king@gmail.com --- diff --git a/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h b/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h index 9e6f399123681..a2055f2a014a8 100644 --- a/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h +++ b/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h @@ -210,7 +210,7 @@ struct nvkm_gsp { } *rm; struct { - struct mutex mutex;; + struct mutex mutex; struct idr idr; } client_id;