From 7f4a344be551f9a22c0104714802e6ab393b6d13 Mon Sep 17 00:00:00 2001 From: Guenter Roeck Date: Sat, 30 Oct 2021 09:02:56 -0700 Subject: [PATCH] hwmon: (lm90) Reorder include files in alphabetical order Reorder include files in alphabetical order to reduce the chance of duplicates and to make it clear where new include files should be added. Drop the unnecessary include of linux/sysfs.h. Include linux/device.h instead because that is what is actually used. No functional change. Signed-off-by: Guenter Roeck --- drivers/hwmon/lm90.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/drivers/hwmon/lm90.c b/drivers/hwmon/lm90.c index 63ada2d0d839a..b7f5b743c9f59 100644 --- a/drivers/hwmon/lm90.c +++ b/drivers/hwmon/lm90.c @@ -80,18 +80,18 @@ * concern all supported chipsets, unless mentioned otherwise. */ -#include +#include +#include +#include #include -#include +#include #include -#include #include -#include +#include #include #include -#include -#include #include +#include #include /* -- 2.39.5