Colin Ian King
2024-Sep-17  12:08 UTC
[PATCH][next] 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 <colin.i.king at gmail.com>
---
 drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h
b/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h
index 9e6f39912368..a2055f2a014a 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;
 
-- 
2.39.2
Danilo Krummrich
2024-Oct-03  21:55 UTC
[PATCH][next] drm/nouveau/gsp: remove extraneous ; after mutex
On 9/17/24 2:08 PM, Colin Ian King wrote:> The mutex field has two following semicolons, replace this with just > one semicolon. > > Signed-off-by: Colin Ian King <colin.i.king at gmail.com>Applied to drm-misc-fixes, thanks!> --- > drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h b/drivers/gpu/drm/nouveau/include/nvkm/subdev/gsp.h > index 9e6f39912368..a2055f2a014a 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; >
Possibly Parallel Threads
- [PATCH] [v2] nouveau: add command-line GSP-RM registry support
- [PATCH] [v4] nouveau: add command-line GSP-RM registry support
- [PATCH] [v4] nouveau: add command-line GSP-RM registry support
- [PATCH v3 02/15] nvkm: rename "repc" to "gsp_rpc_len" on the GSP message recv path
- [PATCH 1/2] [v2] drm/nouveau: retain device pointer in nvkm_gsp_mem object