diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2023-01-02 18:34:50 +0100 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2023-01-08 13:12:10 +0100 |
commit | 4b570fe0d4c9f326fb87b1c58abebb8f0376eaa9 (patch) | |
tree | acb30872dbefd66fc0be62cd3dcb5286a77c4d64 /drivers/iio/adc/ti-adc128s052.c | |
parent | iio: adc: ti-adc128s052: Drop anti-pattern of ACPI_PTR() use (diff) | |
download | linux-4b570fe0d4c9f326fb87b1c58abebb8f0376eaa9.tar.xz linux-4b570fe0d4c9f326fb87b1c58abebb8f0376eaa9.zip |
iio: adc: ti-adc128s052: Sort headers
Sort the headers in alphabetic order in order to ease
the maintenance for this part.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20230102173450.29882-4-andriy.shevchenko@linux.intel.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/adc/ti-adc128s052.c')
-rw-r--r-- | drivers/iio/adc/ti-adc128s052.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/iio/adc/ti-adc128s052.c b/drivers/iio/adc/ti-adc128s052.c index 0f737e9df0fa..a456ea78462f 100644 --- a/drivers/iio/adc/ti-adc128s052.c +++ b/drivers/iio/adc/ti-adc128s052.c @@ -10,12 +10,12 @@ */ #include <linux/err.h> -#include <linux/spi/spi.h> -#include <linux/module.h> -#include <linux/mod_devicetable.h> #include <linux/iio/iio.h> +#include <linux/mod_devicetable.h> +#include <linux/module.h> #include <linux/property.h> #include <linux/regulator/consumer.h> +#include <linux/spi/spi.h> struct adc128_configuration { const struct iio_chan_spec *channels; |