[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20240608190600.622dfd7f@jic23-huawei>
Date: Sat, 8 Jun 2024 19:06:00 +0100
From: Jonathan Cameron <jic23@...nel.org>
To: Nuno Sa <nuno.sa@...log.com>
Cc: Petr Mladek <pmladek@...e.com>, Lars-Peter Clausen <lars@...afoo.de>,
Olivier Moysan <olivier.moysan@...s.st.com>, Jyoti Bhayana
<jbhayana@...gle.com>, "Andy Shevchenko"
<andriy.shevchenko@...ux.intel.com>, Chris Down <chris@...isdown.name>,
John Ogness <john.ogness@...utronix.de>, "Greg Kroah-Hartman"
<gregkh@...uxfoundation.org>, Andi Shyti <andi.shyti@...nel.org>,
<linux-kernel@...r.kernel.org>, <linux-iio@...r.kernel.org>
Subject: Re: [PATCH v3 2/4] iio: temperature: ltc2983: convert to
dev_err_probe()
On Thu, 6 Jun 2024 09:22:38 +0200
Nuno Sa <nuno.sa@...log.com> wrote:
> Use dev_err_probe() (and variants) in the probe() path. While at it, made
> some simple improvements:
> * Explicitly included the err.h and errno.h headers;
> * Removed some unnecessary line breaks;
> * Removed a redundant 'else';
> * Added some missing \n to prink.
>
> Signed-off-by: Nuno Sa <nuno.sa@...log.com>
> ---
> @@ -1296,8 +1268,8 @@ static int ltc2983_reg_access(struct iio_dev *indio_dev,
>
> if (readval)
> return regmap_read(st->regmap, reg, readval);
> - else
> - return regmap_write(st->regmap, reg, writeval);
> +
> + return regmap_write(st->regmap, reg, writeval);
> }
Unrelated.
Otherwise updates look correct to me.
Powered by blists - more mailing lists