All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alex Deucher <alexdeucher@gmail.com>
To: "Christian König" <christian.koenig@amd.com>
Cc: Dave Airlie <airlied@linux.ie>,
	amd-gfx list <amd-gfx@lists.freedesktop.org>,
	Zheng Bin <zhengbin13@huawei.com>,
	Maling list - DRI developers <dri-devel@lists.freedesktop.org>,
	"Deucher, Alexander" <alexander.deucher@amd.com>
Subject: Re: [PATCH] drm/amdgpu: Remove unneeded semicolon
Date: Fri, 24 Apr 2020 16:16:21 -0400	[thread overview]
Message-ID: <CADnq5_O+jpdSwBB47zdepqG=wJQWWYbBH1DnyPDFBa96H8kkGw@mail.gmail.com> (raw)
In-Reply-To: <2ebe7c66-0562-b61d-bf36-278a52590ce7@amd.com>

Applied.  Thanks!

Alex

On Fri, Apr 24, 2020 at 3:56 AM Christian König
<christian.koenig@amd.com> wrote:
>
> Am 24.04.20 um 09:56 schrieb Zheng Bin:
> > Fixes coccicheck warning:
> >
> > drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c:2534:2-3: Unneeded semicolon
> >
> > Reported-by: Hulk Robot <hulkci@huawei.com>
> > Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
>
> Reviewed-by: Christian König <christian.koenig@amd.com>
>
> > ---
> >   drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> > index 09aa5f509bd2..43d84214995c 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> > @@ -2531,7 +2531,7 @@ static void gfx_v9_0_init_sq_config(struct amdgpu_device *adev)
> >               break;
> >       default:
> >               break;
> > -     };
> > +     }
> >   }
> >
> >   static void gfx_v9_0_constants_init(struct amdgpu_device *adev)
> > --
> > 2.26.0.106.g9fadedd
> >
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Alex Deucher <alexdeucher@gmail.com>
To: "Christian König" <christian.koenig@amd.com>
Cc: Dave Airlie <airlied@linux.ie>,
	amd-gfx list <amd-gfx@lists.freedesktop.org>,
	Zheng Bin <zhengbin13@huawei.com>,
	Maling list - DRI developers <dri-devel@lists.freedesktop.org>,
	Daniel Vetter <daniel@ffwll.ch>,
	"Deucher, Alexander" <alexander.deucher@amd.com>
Subject: Re: [PATCH] drm/amdgpu: Remove unneeded semicolon
Date: Fri, 24 Apr 2020 16:16:21 -0400	[thread overview]
Message-ID: <CADnq5_O+jpdSwBB47zdepqG=wJQWWYbBH1DnyPDFBa96H8kkGw@mail.gmail.com> (raw)
In-Reply-To: <2ebe7c66-0562-b61d-bf36-278a52590ce7@amd.com>

Applied.  Thanks!

Alex

On Fri, Apr 24, 2020 at 3:56 AM Christian König
<christian.koenig@amd.com> wrote:
>
> Am 24.04.20 um 09:56 schrieb Zheng Bin:
> > Fixes coccicheck warning:
> >
> > drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c:2534:2-3: Unneeded semicolon
> >
> > Reported-by: Hulk Robot <hulkci@huawei.com>
> > Signed-off-by: Zheng Bin <zhengbin13@huawei.com>
>
> Reviewed-by: Christian König <christian.koenig@amd.com>
>
> > ---
> >   drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> > index 09aa5f509bd2..43d84214995c 100644
> > --- a/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> > +++ b/drivers/gpu/drm/amd/amdgpu/gfx_v9_0.c
> > @@ -2531,7 +2531,7 @@ static void gfx_v9_0_init_sq_config(struct amdgpu_device *adev)
> >               break;
> >       default:
> >               break;
> > -     };
> > +     }
> >   }
> >
> >   static void gfx_v9_0_constants_init(struct amdgpu_device *adev)
> > --
> > 2.26.0.106.g9fadedd
> >
>
> _______________________________________________
> amd-gfx mailing list
> amd-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/amd-gfx
_______________________________________________
amd-gfx mailing list
amd-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/amd-gfx

  reply	other threads:[~2020-04-24 20:16 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-24  7:56 [PATCH] drm/amdgpu: Remove unneeded semicolon Zheng Bin
2020-04-24  7:56 ` Zheng Bin
2020-04-24  7:51 ` Christian König
2020-04-24  7:51   ` Christian König
2020-04-24 20:16   ` Alex Deucher [this message]
2020-04-24 20:16     ` Alex Deucher
2020-10-27 19:07 [PATCH] drm/amdgpu: remove " trix
2020-10-27 19:07 ` trix
2020-10-27 19:07 ` trix
2020-10-30  3:34 ` Alex Deucher
2020-10-30  3:34   ` Alex Deucher
2020-10-30  3:34   ` Alex Deucher
2023-05-05  7:37 Jiapeng Chong
2023-05-05  7:37 ` Jiapeng Chong
2023-05-05  7:37 ` Jiapeng Chong
2023-05-05 18:51 ` Alex Deucher
2023-05-05 18:51   ` Alex Deucher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CADnq5_O+jpdSwBB47zdepqG=wJQWWYbBH1DnyPDFBa96H8kkGw@mail.gmail.com' \
    --to=alexdeucher@gmail.com \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=amd-gfx@lists.freedesktop.org \
    --cc=christian.koenig@amd.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=zhengbin13@huawei.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.