[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5c5b87fd-5df0-437b-8170-264f77ceb3b7@ideasonboard.com>
Date: Fri, 8 Nov 2024 11:34:29 +0200
From: Tomi Valkeinen <tomi.valkeinen@...asonboard.com>
To: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
Cc: Mauro Carvalho Chehab <mchehab@...nel.org>,
Sakari Ailus <sakari.ailus@...ux.intel.com>,
Hans Verkuil <hverkuil-cisco@...all.nl>, linux-media@...r.kernel.org,
linux-kernel@...r.kernel.org, Jai Luthra <jai.luthra@...asonboard.com>
Subject: Re: [PATCH 13/13] media: i2c: ds90ub953: Add error handling for i2c
reads/writes
Hi,
On 10/10/2024 17:06, Andy Shevchenko wrote:
> On Fri, Oct 04, 2024 at 05:46:44PM +0300, Tomi Valkeinen wrote:
>> Add error handling for i2c reads/writes in various places.
>
> ...
>
>> + ret = ub953_write(priv, UB953_REG_CLKOUT_CTRL1, clkout_ctrl1);
>> + if (ret)
>> + return ret;
>> +
>> + return 0;
>
> This is just a more verbose version of
>
> return ub953_write(priv, UB953_REG_CLKOUT_CTRL1, clkout_ctrl1);
>
> ...
>
>> - ub953_write_clkout_regs(priv, &clkout_data);
>> -
>> - return 0;
>> + return ub953_write_clkout_regs(priv, &clkout_data);
>
> ...and seems you use that pattern.
I use the pattern selectively =).
If the function has a bunch of
ret = foo()
if (ret)
return ret;
blocks, I want to keep the pattern and thus I don't use "return foo();"
as the last line.
Also, I think, I usually like to use "return foo();" only with small
functions, as the function call becomes less visible with that format.
Tomi
Powered by blists - more mailing lists