[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <ZBRZCHM4rI9Csvib@smile.fi.intel.com>
Date: Fri, 17 Mar 2023 14:11:52 +0200
From: Andy Shevchenko <andriy.shevchenko@...el.com>
To: Luca Ceresoli <luca.ceresoli@...tlin.com>
Cc: Tomi Valkeinen <tomi.valkeinen@...asonboard.com>,
Wolfram Sang <wsa@...nel.org>, linux-media@...r.kernel.org,
devicetree@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-i2c@...r.kernel.org, Rob Herring <robh+dt@...nel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@...aro.org>,
Matti Vaittinen <Matti.Vaittinen@...rohmeurope.com>,
Laurent Pinchart <laurent.pinchart+renesas@...asonboard.com>,
Mauro Carvalho Chehab <mchehab@...nel.org>,
Peter Rosin <peda@...ntia.se>,
Liam Girdwood <lgirdwood@...il.com>,
Mark Brown <broonie@...nel.org>,
Sakari Ailus <sakari.ailus@...ux.intel.com>,
Michael Tretter <m.tretter@...gutronix.de>,
Hans Verkuil <hverkuil@...all.nl>,
Mike Pagano <mpagano@...too.org>,
Krzysztof HaĆasa <khalasa@...p.pl>,
Marek Vasut <marex@...x.de>,
Satish Nagireddy <satish.nagireddy@...cruise.com>,
Luca Ceresoli <luca@...aceresoli.net>
Subject: Re: [PATCH v10 1/8] i2c: add I2C Address Translator (ATR) support
On Fri, Mar 17, 2023 at 10:16:06AM +0100, Luca Ceresoli wrote:
> Hi Tomi, Wolfram,
> On Wed, 22 Feb 2023 15:29:00 +0200
> Tomi Valkeinen <tomi.valkeinen@...asonboard.com> wrote:
> > From: Luca Ceresoli <luca@...aceresoli.net>
...
> > Signed-off-by: Luca Ceresoli <luca@...aceresoli.net>
> > Signed-off-by: Tomi Valkeinen <tomi.valkeinen@...asonboard.com>
>
> Wolfram, I think Tomi improved this work as much as currently possible
> and this patch now looks extremely good to me. I wish we had this in
> mainline soon. Does it make sense for me to send a Reviewed-by tag,
> given I already have a S-o-b one?
I believe documentation is in favour that standalone SoB suffice.
Especially when you are the author (From line) the Rb makes no
sense to me.
...
> > +/**
> > + * struct i2c_atr - The I2C ATR instance
> > + * @parent: The parent &struct i2c_adapter
> > + * @dev: The device that owns the I2C ATR instance
> > + * @ops: &struct i2c_atr_ops
> > + * @priv: Private driver data, set with i2c_atr_set_driver_data()
> > + * @algo: The &struct i2c_algorithm for adapters
> > + * @lock: Lock for the I2C bus segment (see &struct i2c_lock_operations)
> > + * @max_adapters: Maximum number of adapters this I2C ATR can have
> > + * @adapter: Array of adapters
> > + */
> > +struct i2c_atr {
> > + struct i2c_adapter *parent;
> > + struct device *dev;
> > + const struct i2c_atr_ops *ops;
> > +
> > + void *priv;
> > +
> > + struct i2c_algorithm algo;
> > + /* lock for the I2C bus segment (see struct i2c_lock_operations) */
>
> This comment is identical to the one in the kerneldoc comments just
> above, I'd just remove it.
>
> > + struct mutex lock;
> > + int max_adapters;
> > +
> > + struct notifier_block i2c_nb;
>
> Undocumented?
`kernel-doc -v` should actually catch this up.
--
With Best Regards,
Andy Shevchenko
Powered by blists - more mailing lists