Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

iio: light: tsl2563: sort header inclusion alphabetically

Sort header inclusion alphabetically.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Tested-by: Ferry Toth <ftoth@exalondelft.nl>
Link: https://lore.kernel.org/r/20221207190348.9347-10-andriy.shevchenko@linux.intel.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>

authored by

Andy Shevchenko and committed by
Jonathan Cameron
3582a83b 571b97fd

+7 -7
+7 -7
drivers/iio/light/tsl2563.c
··· 12 12 */ 13 13 14 14 #include <linux/bits.h> 15 - #include <linux/module.h> 16 - #include <linux/mod_devicetable.h> 17 - #include <linux/property.h> 15 + #include <linux/delay.h> 16 + #include <linux/err.h> 18 17 #include <linux/i2c.h> 19 18 #include <linux/interrupt.h> 20 19 #include <linux/irq.h> 21 - #include <linux/sched.h> 22 20 #include <linux/math.h> 21 + #include <linux/mod_devicetable.h> 22 + #include <linux/module.h> 23 23 #include <linux/mutex.h> 24 - #include <linux/delay.h> 25 24 #include <linux/pm.h> 26 - #include <linux/err.h> 25 + #include <linux/property.h> 26 + #include <linux/sched.h> 27 27 #include <linux/slab.h> 28 28 29 + #include <linux/iio/events.h> 29 30 #include <linux/iio/iio.h> 30 31 #include <linux/iio/sysfs.h> 31 - #include <linux/iio/events.h> 32 32 33 33 /* Use this many bits for fraction part. */ 34 34 #define ADC_FRAC_BITS 14