Message ID | 20240727143820.1358225-3-linux@roeck-us.net (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | [1/6] hwmon: (max1619) Clamp temperature range when writing limits | expand |
On Sat, Jul 27, 2024 at 07:38:16AM -0700, Guenter Roeck wrote: > Simplify maintenance by reordering include files to alphabetic order. > > Signed-off-by: Guenter Roeck <linux@roeck-us.net> Reviewed-by: Tzung-Bi Shih <tzungbi@kernel.org>
diff --git a/drivers/hwmon/max1619.c b/drivers/hwmon/max1619.c index 464f4c838394..8eb7d04bd2f5 100644 --- a/drivers/hwmon/max1619.c +++ b/drivers/hwmon/max1619.c @@ -12,15 +12,15 @@ * http://pdfserv.maxim-ic.com/en/ds/MAX1619.pdf */ -#include <linux/module.h> -#include <linux/init.h> -#include <linux/slab.h> -#include <linux/jiffies.h> -#include <linux/i2c.h> +#include <linux/err.h> #include <linux/hwmon.h> #include <linux/hwmon-sysfs.h> -#include <linux/err.h> +#include <linux/i2c.h> +#include <linux/init.h> +#include <linux/jiffies.h> +#include <linux/module.h> #include <linux/mutex.h> +#include <linux/slab.h> #include <linux/sysfs.h> static const unsigned short normal_i2c[] = {
Simplify maintenance by reordering include files to alphabetic order. Signed-off-by: Guenter Roeck <linux@roeck-us.net> --- drivers/hwmon/max1619.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-)