diff options
| author | Oleksij Rempel <o.rempel@pengutronix.de> | 2026-02-10 16:51:01 +0300 |
|---|---|---|
| committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2026-03-22 15:43:22 +0300 |
| commit | 809b578b99c57cd5cbcfe5e1ef40ae0da6a383ee (patch) | |
| tree | 1f5a7459fe8a38757f2b62e3ec2e38f6303ac52a | |
| parent | c071adeb72739306bf2960a8f703206979c65196 (diff) | |
| download | linux-809b578b99c57cd5cbcfe5e1ef40ae0da6a383ee.tar.xz | |
iio: dac: ds4424: sort headers alphabetically
Sort the header inclusions alphabetically. This improves readability and
simplifies adding new includes in the future.
Group subsystem-specific headers (linux/iio/*) separately at the end
to clarify subsystem context.
Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
| -rw-r--r-- | drivers/iio/dac/ds4424.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/iio/dac/ds4424.c b/drivers/iio/dac/ds4424.c index 9d33a810336f..c35becc54985 100644 --- a/drivers/iio/dac/ds4424.c +++ b/drivers/iio/dac/ds4424.c @@ -6,14 +6,15 @@ */ #include <linux/bits.h> +#include <linux/delay.h> +#include <linux/err.h> +#include <linux/i2c.h> #include <linux/kernel.h> #include <linux/module.h> -#include <linux/i2c.h> #include <linux/regulator/consumer.h> -#include <linux/err.h> -#include <linux/delay.h> -#include <linux/iio/iio.h> + #include <linux/iio/driver.h> +#include <linux/iio/iio.h> #include <linux/iio/machine.h> #define DS4422_MAX_DAC_CHANNELS 2 |
