diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2018-09-26 18:27:14 +0300 |
---|---|---|
committer | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2018-09-27 12:18:17 +0300 |
commit | e6e69a31dc7412ac9fb40881ae9788ad82ac6c98 (patch) | |
tree | 151c322a1af6e229b55545d8a0ef9fe420ea04d3 | |
parent | f6b27d0907d0381c330c09ae6f7149c8121c3f37 (diff) | |
download | lwn-e6e69a31dc7412ac9fb40881ae9788ad82ac6c98.tar.gz lwn-e6e69a31dc7412ac9fb40881ae9788ad82ac6c98.zip |
platform/x86: intel_mid_thermal: Sort headers alphabetically
Sort headers alphabetically for better maintenance.
No functional change.
While here, remove unneeded linux/init.h inclusion.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
-rw-r--r-- | drivers/platform/x86/intel_mid_thermal.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/drivers/platform/x86/intel_mid_thermal.c b/drivers/platform/x86/intel_mid_thermal.c index 008a76903cbf..3fa8207dd34e 100644 --- a/drivers/platform/x86/intel_mid_thermal.c +++ b/drivers/platform/x86/intel_mid_thermal.c @@ -24,16 +24,15 @@ #define pr_fmt(fmt) "intel_mid_thermal: " fmt -#include <linux/module.h> -#include <linux/init.h> +#include <linux/device.h> #include <linux/err.h> +#include <linux/mfd/intel_msic.h> +#include <linux/module.h> #include <linux/param.h> -#include <linux/device.h> #include <linux/platform_device.h> -#include <linux/slab.h> #include <linux/pm.h> +#include <linux/slab.h> #include <linux/thermal.h> -#include <linux/mfd/intel_msic.h> /* Number of thermal sensors */ #define MSIC_THERMAL_SENSORS 4 |