[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <9c24a8f5b3d1c692fcecadcb1deec93d2018cc15.camel@linux.intel.com>
Date: Mon, 13 Dec 2021 10:19:26 -0800
From: "David E. Box" <david.e.box@...ux.intel.com>
To: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
Cc: lee.jones@...aro.org, hdegoede@...hat.com, bhelgaas@...gle.com,
gregkh@...uxfoundation.org, srinivas.pandruvada@...el.com,
mgross@...ux.intel.com, linux-kernel@...r.kernel.org,
platform-driver-x86@...r.kernel.org, linux-pci@...r.kernel.org,
Mark Gross <markgross@...nel.org>
Subject: Re: [PATCH V3 2/6] driver core: auxiliary bus: Add driver data
helpers
On Mon, 2021-12-13 at 20:04 +0200, Andy Shevchenko wrote:
> On Mon, Dec 13, 2021 at 09:59:17AM -0800, David E. Box wrote:
> > Adds get/set driver data helpers for auxiliary devices.
>
> I though I gave you a tag... Hint: use `b4 am ...` against previous version
> and
> you won't lose the individual tags.
Sorry I did drop it. Thanks for the tip.
David
>
> Anyway,
> Reviewed-by: Andy Shevchenko <andriy.shevchenko@...ux.intel.com>
>
> > Signed-off-by: David E. Box <david.e.box@...ux.intel.com>
> > Reviewed-by: Mark Gross <markgross@...nel.org>
> > ---
> > V3
> > - No changes
> > V2
> > - No changes
> >
> > include/linux/auxiliary_bus.h | 10 ++++++++++
> > 1 file changed, 10 insertions(+)
> >
> > diff --git a/include/linux/auxiliary_bus.h b/include/linux/auxiliary_bus.h
> > index fc51d45f106b..a8338d456e81 100644
> > --- a/include/linux/auxiliary_bus.h
> > +++ b/include/linux/auxiliary_bus.h
> > @@ -28,6 +28,16 @@ struct auxiliary_driver {
> > const struct auxiliary_device_id *id_table;
> > };
> >
> > +static inline void *auxiliary_get_drvdata(struct auxiliary_device *auxdev)
> > +{
> > + return dev_get_drvdata(&auxdev->dev);
> > +}
> > +
> > +static inline void auxiliary_set_drvdata(struct auxiliary_device *auxdev,
> > void *data)
> > +{
> > + dev_set_drvdata(&auxdev->dev, data);
> > +}
> > +
> > static inline struct auxiliary_device *to_auxiliary_dev(struct device *dev)
> > {
> > return container_of(dev, struct auxiliary_device, dev);
> > --
> > 2.25.1
> >
Powered by blists - more mailing lists