diff options
Diffstat (limited to 'drivers/platform/x86/intel_turbo_max_3.c')
-rw-r--r-- | drivers/platform/x86/intel_turbo_max_3.c | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/drivers/platform/x86/intel_turbo_max_3.c b/drivers/platform/x86/intel_turbo_max_3.c index a6d5aa0c3c47..7b9cc841ab65 100644 --- a/drivers/platform/x86/intel_turbo_max_3.c +++ b/drivers/platform/x86/intel_turbo_max_3.c | |||
@@ -1,28 +1,20 @@ | |||
1 | // SPDX-License-Identifier: GPL-2.0 | ||
1 | /* | 2 | /* |
2 | * Intel Turbo Boost Max Technology 3.0 legacy (non HWP) enumeration driver | 3 | * Intel Turbo Boost Max Technology 3.0 legacy (non HWP) enumeration driver |
3 | * Copyright (c) 2017, Intel Corporation. | 4 | * Copyright (c) 2017, Intel Corporation. |
4 | * All rights reserved. | 5 | * All rights reserved. |
5 | * | 6 | * |
6 | * Author: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> | 7 | * Author: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> |
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms and conditions of the GNU General Public License, | ||
10 | * version 2, as published by the Free Software Foundation. | ||
11 | * | ||
12 | * This program is distributed in the hope it will be useful, but WITHOUT | ||
13 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
14 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
15 | * more details. | ||
16 | * | ||
17 | */ | 8 | */ |
18 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt | 9 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
19 | 10 | ||
20 | #include <linux/kernel.h> | 11 | #include <linux/cpufeature.h> |
12 | #include <linux/cpuhotplug.h> | ||
21 | #include <linux/init.h> | 13 | #include <linux/init.h> |
14 | #include <linux/kernel.h> | ||
22 | #include <linux/topology.h> | 15 | #include <linux/topology.h> |
23 | #include <linux/workqueue.h> | 16 | #include <linux/workqueue.h> |
24 | #include <linux/cpuhotplug.h> | 17 | |
25 | #include <linux/cpufeature.h> | ||
26 | #include <asm/cpu_device_id.h> | 18 | #include <asm/cpu_device_id.h> |
27 | #include <asm/intel-family.h> | 19 | #include <asm/intel-family.h> |
28 | 20 | ||