diff options
author | Joel <joel@jms.id.au> | 2017-11-02 14:53:47 +1100 |
---|---|---|
committer | Guenter Roeck <linux@roeck-us.net> | 2017-11-04 11:09:34 -0700 |
commit | 54b943e69691329805349440b157b36e34051a57 (patch) | |
tree | 2951183aac511b1c25c4b7ba94306d57e853553f /drivers | |
parent | 2305a18ba9ffa105ad1686f40a7861718c338e3c (diff) | |
download | linux-54b943e69691329805349440b157b36e34051a57.tar.gz linux-54b943e69691329805349440b157b36e34051a57.tar.bz2 linux-54b943e69691329805349440b157b36e34051a57.zip |
hwmon: (aspeed-pwm-tacho) Sort headers
Sort the headers in preperation for future changes.
Signed-off-by: Joel Stanley <joel@jms.id.au>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/hwmon/aspeed-pwm-tacho.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/aspeed-pwm-tacho.c b/drivers/hwmon/aspeed-pwm-tacho.c index f914e5f41048..63a95e23ca81 100644 --- a/drivers/hwmon/aspeed-pwm-tacho.c +++ b/drivers/hwmon/aspeed-pwm-tacho.c @@ -7,19 +7,19 @@ */ #include <linux/clk.h> +#include <linux/delay.h> #include <linux/errno.h> #include <linux/gpio/consumer.h> -#include <linux/delay.h> #include <linux/hwmon.h> #include <linux/hwmon-sysfs.h> #include <linux/io.h> #include <linux/kernel.h> #include <linux/module.h> -#include <linux/of_platform.h> #include <linux/of_device.h> +#include <linux/of_platform.h> #include <linux/platform_device.h> -#include <linux/sysfs.h> #include <linux/regmap.h> +#include <linux/sysfs.h> #include <linux/thermal.h> /* ASPEED PWM & FAN Tach Register Definition */ |