[PATCH v3 13/44] hwmon: (fam15h_power) Reorder headers alphabetically
"Ahmed S. Darwish" <[email protected]>
| Newsgroups | dev.linux.lists.x86-cpuid,org.kernel.vger.linux-kernel |
|---|---|
| Message-ID | <[email protected]> |
The source file uses cpuid_*() macros, but it does not include <asm/cpuid/api.h>. Sort its include lines so that the CPUID header can be included next. Signed-off-by: Ahmed S. Darwish <[email protected]> --- drivers/hwmon/fam15h_power.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/drivers/hwmon/fam15h_power.c b/drivers/hwmon/fam15h_power.c index 8ecebea53651..5a5674e85f63 100644 --- a/drivers/hwmon/fam15h_power.c +++ b/drivers/hwmon/fam15h_power.c @@ -6,20 +6,21 @@ * Author: Andreas Herrmann <[email protected]> */ +#include <linux/bitops.h> +#include <linux/cpu.h> +#include <linux/cpumask.h> #include <linux/err.h> -#include <linux/hwmon.h> #include <linux/hwmon-sysfs.h> +#include <linux/hwmon.h> #include <linux/init.h> #include <linux/module.h> #include <linux/pci.h> -#include <linux/bitops.h> -#include <linux/cpu.h> -#include <linux/cpumask.h> -#include <linux/time.h> #include <linux/sched.h> +#include <linux/time.h> #include <linux/topology.h> -#include <asm/processor.h> + #include <asm/msr.h> +#include <asm/processor.h> MODULE_DESCRIPTION("AMD Family 15h CPU processor power monitor"); MODULE_AUTHOR("Andreas Herrmann <[email protected]>"); -- 2.49.0