2023-07-10 07:25:28

by Ran Sun

[permalink] [raw]
Subject: [PATCH] drm/nouveau/iccsense:

Fixed error: 'do not use assignment in if condition'

This patch fixes error: 'do not use assignment in if condition'
in drm/nouveau/iccsense

Signed-off-by: Ran Sun <[email protected]>
---
drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
index 8f0ccd3664eb..2428f3d6e477 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
@@ -322,7 +322,8 @@ int
nvkm_iccsense_new_(struct nvkm_device *device, enum nvkm_subdev_type
type, int inst,
struct nvkm_iccsense **iccsense)
{
- if (!(*iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL)))
+ *iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL);
+ if (!*iccsense)
return -ENOMEM;
INIT_LIST_HEAD(&(*iccsense)->sensors);
INIT_LIST_HEAD(&(*iccsense)->rails);


2023-07-10 09:20:37

by Bagas Sanjaya

[permalink] [raw]
Subject: Re: [PATCH] drm/nouveau/iccsense:

On Mon, Jul 10, 2023 at 03:06:47PM +0800, [email protected] wrote:
> Fixed error: 'do not use assignment in if condition'
>
> This patch fixes error: 'do not use assignment in if condition'
> in drm/nouveau/iccsense

I guess this is checkpatch fix, right?

>
> Signed-off-by: Ran Sun <[email protected]>
> ---
> drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> index 8f0ccd3664eb..2428f3d6e477 100644
> --- a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> @@ -322,7 +322,8 @@ int
> nvkm_iccsense_new_(struct nvkm_device *device, enum nvkm_subdev_type type,
> int inst,
> struct nvkm_iccsense **iccsense)
> {
> - if (!(*iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL)))
> + *iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL);
> + if (!*iccsense)
> return -ENOMEM;
> INIT_LIST_HEAD(&(*iccsense)->sensors);
> INIT_LIST_HEAD(&(*iccsense)->rails);

Your patch is corrupted (tabs converted to spaces) because you're using
Roundcube. Please use git-send-mail(1) instead.

Thanks.

--
An old man doll... just what I always wanted! - Clara


Attachments:
(No filename) (1.35 kB)
signature.asc (235.00 B)
Download all attachments

2023-07-13 09:26:29

by Karol Herbst

[permalink] [raw]
Subject: Re: [PATCH] drm/nouveau/iccsense:

On Thu, Jul 13, 2023 at 11:13 AM Karol Herbst <[email protected]> wrote:
>
> On Mon, Jul 10, 2023 at 11:10 AM Bagas Sanjaya <[email protected]> wrote:
> >
> > On Mon, Jul 10, 2023 at 03:06:47PM +0800, [email protected] wrote:
> > > Fixed error: 'do not use assignment in if condition'
> > >
> > > This patch fixes error: 'do not use assignment in if condition'
> > > in drm/nouveau/iccsense
> >
> > I guess this is checkpatch fix, right?
> >
> > >
> > > Signed-off-by: Ran Sun <[email protected]>
> > > ---
> > > drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c | 3 ++-
> > > 1 file changed, 2 insertions(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > > b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > > index 8f0ccd3664eb..2428f3d6e477 100644
> > > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > > @@ -322,7 +322,8 @@ int
> > > nvkm_iccsense_new_(struct nvkm_device *device, enum nvkm_subdev_type type,
> > > int inst,
> > > struct nvkm_iccsense **iccsense)
> > > {
> > > - if (!(*iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL)))
> > > + *iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL);
> > > + if (!*iccsense)
> > > return -ENOMEM;
> > > INIT_LIST_HEAD(&(*iccsense)->sensors);
> > > INIT_LIST_HEAD(&(*iccsense)->rails);
> >
> > Your patch is corrupted (tabs converted to spaces) because you're using
> > Roundcube. Please use git-send-mail(1) instead.
> >
>
> oh right, I didn't notice with the patches I reviewed already here.
> Yeah, none of them apply, please use git to send those patches.
>

also please send them all together in a single series the next time.

> > Thanks.
> >
> > --
> > An old man doll... just what I always wanted! - Clara


2023-07-13 09:28:40

by Karol Herbst

[permalink] [raw]
Subject: Re: [PATCH] drm/nouveau/iccsense:

On Mon, Jul 10, 2023 at 11:10 AM Bagas Sanjaya <[email protected]> wrote:
>
> On Mon, Jul 10, 2023 at 03:06:47PM +0800, [email protected] wrote:
> > Fixed error: 'do not use assignment in if condition'
> >
> > This patch fixes error: 'do not use assignment in if condition'
> > in drm/nouveau/iccsense
>
> I guess this is checkpatch fix, right?
>
> >
> > Signed-off-by: Ran Sun <[email protected]>
> > ---
> > drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > index 8f0ccd3664eb..2428f3d6e477 100644
> > --- a/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/iccsense/base.c
> > @@ -322,7 +322,8 @@ int
> > nvkm_iccsense_new_(struct nvkm_device *device, enum nvkm_subdev_type type,
> > int inst,
> > struct nvkm_iccsense **iccsense)
> > {
> > - if (!(*iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL)))
> > + *iccsense = kzalloc(sizeof(**iccsense), GFP_KERNEL);
> > + if (!*iccsense)
> > return -ENOMEM;
> > INIT_LIST_HEAD(&(*iccsense)->sensors);
> > INIT_LIST_HEAD(&(*iccsense)->rails);
>
> Your patch is corrupted (tabs converted to spaces) because you're using
> Roundcube. Please use git-send-mail(1) instead.
>

oh right, I didn't notice with the patches I reviewed already here.
Yeah, none of them apply, please use git to send those patches.

> Thanks.
>
> --
> An old man doll... just what I always wanted! - Clara