Message ID | 20210611152614.109361-8-jic23@kernel.org (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | staging:iio: Header cleanup | expand |
On Fri, 11 Jun 2021 16:26:14 +0100 Jonathan Cameron <jic23@kernel.org> wrote: > From: Jonathan Cameron <Jonathan.Cameron@huawei.com> > > Based on consideration of the output of the include-what-you-use tool. > Drop unused includes and add some that should be there. > > Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com> > --- > drivers/staging/iio/resolver/ad2s1210.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/iio/resolver/ad2s1210.c b/drivers/staging/iio/resolver/ad2s1210.c > index 74adb82f37c3..99dec73144ba 100644 > --- a/drivers/staging/iio/resolver/ad2s1210.c > +++ b/drivers/staging/iio/resolver/ad2s1210.c > @@ -4,15 +4,16 @@ > * > * Copyright (c) 2010-2010 Analog Devices Inc. > */ > +#include <linux/kernel.h> > #include <linux/types.h> > #include <linux/mutex.h> > #include <linux/device.h> > #include <linux/spi/spi.h> > -#include <linux/slab.h> > #include <linux/sysfs.h> > -#include <linux/delay.h> Let's pretend I didn't remove this one by accident as it is needed. I don't want to resend the whole set for that however so will leave it for now. > #include <linux/gpio/consumer.h> > #include <linux/module.h> > +#include <linux/mod_devicetable.h> > +#include <linux/of.h> > > #include <linux/iio/iio.h> > #include <linux/iio/sysfs.h>
diff --git a/drivers/staging/iio/resolver/ad2s1210.c b/drivers/staging/iio/resolver/ad2s1210.c index 74adb82f37c3..99dec73144ba 100644 --- a/drivers/staging/iio/resolver/ad2s1210.c +++ b/drivers/staging/iio/resolver/ad2s1210.c @@ -4,15 +4,16 @@ * * Copyright (c) 2010-2010 Analog Devices Inc. */ +#include <linux/kernel.h> #include <linux/types.h> #include <linux/mutex.h> #include <linux/device.h> #include <linux/spi/spi.h> -#include <linux/slab.h> #include <linux/sysfs.h> -#include <linux/delay.h> #include <linux/gpio/consumer.h> #include <linux/module.h> +#include <linux/mod_devicetable.h> +#include <linux/of.h> #include <linux/iio/iio.h> #include <linux/iio/sysfs.h>