Re: [PATCH V3 2/6] driver core: auxiliary bus: Add driver data helpers

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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@xxxxxxxxxxxxxxx>
> 
> > Signed-off-by: David E. Box <david.e.box@xxxxxxxxxxxxxxx>
> > Reviewed-by: Mark Gross <markgross@xxxxxxxxxx>
> > ---
> > 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
> > 




[Index of Archives]     [Linux Kernel Development]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux