2022-07-18 02:06:53

by Joe Simmons-Talbott

[permalink] [raw]
Subject: [PATCH] iio: Be consistent with allocation result tests.

Make both allocation result tests use the same format

if (!ptr)

Signed-off-by: Joe Simmons-Talbott <[email protected]>
---
drivers/iio/industrialio-trigger.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/iio/industrialio-trigger.c b/drivers/iio/industrialio-trigger.c
index f504ed351b3e..e22c47f20b4d 100644
--- a/drivers/iio/industrialio-trigger.c
+++ b/drivers/iio/industrialio-trigger.c
@@ -369,7 +369,7 @@ struct iio_poll_func
struct iio_poll_func *pf;

pf = kmalloc(sizeof *pf, GFP_KERNEL);
- if (pf == NULL)
+ if (!pf)
return NULL;
va_start(vargs, fmt);
pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);
--
2.35.3


2022-07-18 16:40:58

by Jonathan Cameron

[permalink] [raw]
Subject: Re: [PATCH] iio: Be consistent with allocation result tests.

On Sun, 17 Jul 2022 22:03:48 -0400
Joe Simmons-Talbott <[email protected]> wrote:

> Make both allocation result tests use the same format
>
> if (!ptr)
>
> Signed-off-by: Joe Simmons-Talbott <[email protected]>
If you post two patches to the list that will cause each other to not
apply, please base one on top of the other and say so in the
patch description.

Anyhow, fixed up and applied by hand.

Thanks,

Jonathan

> ---
> drivers/iio/industrialio-trigger.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/iio/industrialio-trigger.c b/drivers/iio/industrialio-trigger.c
> index f504ed351b3e..e22c47f20b4d 100644
> --- a/drivers/iio/industrialio-trigger.c
> +++ b/drivers/iio/industrialio-trigger.c
> @@ -369,7 +369,7 @@ struct iio_poll_func
> struct iio_poll_func *pf;
>
> pf = kmalloc(sizeof *pf, GFP_KERNEL);
> - if (pf == NULL)
> + if (!pf)
> return NULL;
> va_start(vargs, fmt);
> pf->name = kvasprintf(GFP_KERNEL, fmt, vargs);

2022-07-31 14:54:33

by Joe Simmons-Talbott

[permalink] [raw]
Subject: Re: [PATCH] iio: Be consistent with allocation result tests.

On Mon, Jul 18, 2022 at 05:44:41PM +0100, Jonathan Cameron wrote:
> On Sun, 17 Jul 2022 22:03:48 -0400
> Joe Simmons-Talbott <[email protected]> wrote:
>
> > Make both allocation result tests use the same format
> >
> > if (!ptr)
> >
> > Signed-off-by: Joe Simmons-Talbott <[email protected]>
> If you post two patches to the list that will cause each other to not
> apply, please base one on top of the other and say so in the
> patch description.
>
> Anyhow, fixed up and applied by hand.

I'm sorry for neglecting that and for creating extra work. Thank you
for fixing it.

Thanks,
Joe