diff options
author | Marek Vasut <marex@denx.de> | 2023-05-10 12:22:47 +0200 |
---|---|---|
committer | Jonathan Cameron <Jonathan.Cameron@huawei.com> | 2023-05-23 22:20:16 +0200 |
commit | 4c077429b42245f9aae855027758c9e6d05bcf33 (patch) | |
tree | 23552113c24b0ef945236b6497d54d8454b2842f /drivers/iio/temperature/mlx90614.c | |
parent | dt-bindings: iio: temperature: melexis,mlx90614: Document MLX90615 support (diff) | |
download | linux-4c077429b42245f9aae855027758c9e6d05bcf33.tar.xz linux-4c077429b42245f9aae855027758c9e6d05bcf33.zip |
iio: mlx90614: Sort headers
Sort the headers alphabetically. No functional change.
Acked-by: Crt Mori <cmo@melexis.com>
Signed-off-by: Marek Vasut <marex@denx.de>
Link: https://lore.kernel.org/r/20230510102251.10118-2-marex@denx.de
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
Diffstat (limited to 'drivers/iio/temperature/mlx90614.c')
-rw-r--r-- | drivers/iio/temperature/mlx90614.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/iio/temperature/mlx90614.c b/drivers/iio/temperature/mlx90614.c index 6a1531669b34..31e308aad558 100644 --- a/drivers/iio/temperature/mlx90614.c +++ b/drivers/iio/temperature/mlx90614.c @@ -19,12 +19,12 @@ * the "wakeup" GPIO is not given, power management will be disabled. */ +#include <linux/delay.h> #include <linux/err.h> +#include <linux/gpio/consumer.h> #include <linux/i2c.h> -#include <linux/module.h> -#include <linux/delay.h> #include <linux/jiffies.h> -#include <linux/gpio/consumer.h> +#include <linux/module.h> #include <linux/pm_runtime.h> #include <linux/iio/iio.h> |