* [PATCH][nexr] drm/amdgpu/mes12_1: emove extra ; from declaration statement
@ 2026-03-23 22:43 Colin Ian King
2026-03-24 9:39 ` Christian König
0 siblings, 1 reply; 3+ messages in thread
From: Colin Ian King @ 2026-03-23 22:43 UTC (permalink / raw)
To: Alex Deucher, Christian König, David Airlie, Simona Vetter,
amd-gfx, dri-devel
Cc: kernel-janitors, linux-kernel
There is a declaration statement that has a ;; at the end, remove the
extraneous ;
Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
drivers/gpu/drm/amd/amdgpu/mes_v12_1.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
index 5dcc2c32644a..0e9089544769 100644
--- a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
+++ b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
@@ -2227,7 +2227,7 @@ static int mes_v12_1_self_test(struct amdgpu_device *adev, int xcc_id)
struct amdgpu_bo *meta_bo = NULL, *ctx_bo = NULL;
void *meta_ptr = NULL, *ctx_ptr = NULL;
u64 meta_gpu_addr, ctx_gpu_addr;
- int size, i, r, pasid;;
+ int size, i, r, pasid;
pasid = amdgpu_pasid_alloc(16);
if (pasid < 0)
--
2.53.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH][nexr] drm/amdgpu/mes12_1: emove extra ; from declaration statement
2026-03-23 22:43 [PATCH][nexr] drm/amdgpu/mes12_1: emove extra ; from declaration statement Colin Ian King
@ 2026-03-24 9:39 ` Christian König
2026-03-24 13:22 ` Alex Deucher
0 siblings, 1 reply; 3+ messages in thread
From: Christian König @ 2026-03-24 9:39 UTC (permalink / raw)
To: Colin Ian King, Alex Deucher, David Airlie, Simona Vetter,
amd-gfx, dri-devel
Cc: kernel-janitors, linux-kernel
On 3/23/26 23:43, Colin Ian King wrote:
> There is a declaration statement that has a ;; at the end, remove the
> extraneous ;
>
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
> ---
> drivers/gpu/drm/amd/amdgpu/mes_v12_1.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
> index 5dcc2c32644a..0e9089544769 100644
> --- a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
> +++ b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
> @@ -2227,7 +2227,7 @@ static int mes_v12_1_self_test(struct amdgpu_device *adev, int xcc_id)
> struct amdgpu_bo *meta_bo = NULL, *ctx_bo = NULL;
> void *meta_ptr = NULL, *ctx_ptr = NULL;
> u64 meta_gpu_addr, ctx_gpu_addr;
> - int size, i, r, pasid;;
> + int size, i, r, pasid;
>
> pasid = amdgpu_pasid_alloc(16);
> if (pasid < 0)
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH][nexr] drm/amdgpu/mes12_1: emove extra ; from declaration statement
2026-03-24 9:39 ` Christian König
@ 2026-03-24 13:22 ` Alex Deucher
0 siblings, 0 replies; 3+ messages in thread
From: Alex Deucher @ 2026-03-24 13:22 UTC (permalink / raw)
To: Christian König
Cc: Colin Ian King, Alex Deucher, David Airlie, Simona Vetter,
amd-gfx, dri-devel, kernel-janitors, linux-kernel
Applied. Thanks!
On Tue, Mar 24, 2026 at 5:49 AM Christian König
<christian.koenig@amd.com> wrote:
>
> On 3/23/26 23:43, Colin Ian King wrote:
> > There is a declaration statement that has a ;; at the end, remove the
> > extraneous ;
> >
> > Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
>
> Reviewed-by: Christian König <christian.koenig@amd.com>
>
> > ---
> > drivers/gpu/drm/amd/amdgpu/mes_v12_1.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
> > index 5dcc2c32644a..0e9089544769 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/mes_v12_1.c
> > @@ -2227,7 +2227,7 @@ static int mes_v12_1_self_test(struct amdgpu_device *adev, int xcc_id)
> > struct amdgpu_bo *meta_bo = NULL, *ctx_bo = NULL;
> > void *meta_ptr = NULL, *ctx_ptr = NULL;
> > u64 meta_gpu_addr, ctx_gpu_addr;
> > - int size, i, r, pasid;;
> > + int size, i, r, pasid;
> >
> > pasid = amdgpu_pasid_alloc(16);
> > if (pasid < 0)
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-03-24 13:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-23 22:43 [PATCH][nexr] drm/amdgpu/mes12_1: emove extra ; from declaration statement Colin Ian King
2026-03-24 9:39 ` Christian König
2026-03-24 13:22 ` Alex Deucher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox