summaryrefslogtreecommitdiffstats
path: root/drivers/cpufreq/powernow-k7.c
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2020-03-24 14:51:51 +0100
committerBorislav Petkov <bp@suse.de>2020-03-24 21:31:27 +0100
commitb11d77fa300d98704519238a2161bc6352c28245 (patch)
tree6b8c2f8d903986548f9cf3876b201c05e69f3046 /drivers/cpufreq/powernow-k7.c
parente36cf2f768467cff824e7da87aedc4e99e4c8396 (diff)
downloadlinux-stable-b11d77fa300d98704519238a2161bc6352c28245.tar.gz
linux-stable-b11d77fa300d98704519238a2161bc6352c28245.tar.bz2
linux-stable-b11d77fa300d98704519238a2161bc6352c28245.zip
cpufreq: Convert to new X86 CPU match macros
The new macro set has a consistent namespace and uses C99 initializers instead of the grufty C89 ones. Get rid the of most local macro wrappers for consistency. The ones which make sense for readability are renamed to X86_MATCH*. In the centrino driver this also removes the two extra duplicates of family 6 model 13 which have no value at all. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Acked-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Link: https://lkml.kernel.org/r/87eetheu88.fsf@nanos.tec.linutronix.de
Diffstat (limited to 'drivers/cpufreq/powernow-k7.c')
-rw-r--r--drivers/cpufreq/powernow-k7.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/cpufreq/powernow-k7.c b/drivers/cpufreq/powernow-k7.c
index 5e5171d3eece..5d515fc34836 100644
--- a/drivers/cpufreq/powernow-k7.c
+++ b/drivers/cpufreq/powernow-k7.c
@@ -109,7 +109,7 @@ static int check_fsb(unsigned int fsbspeed)
}
static const struct x86_cpu_id powernow_k7_cpuids[] = {
- { X86_VENDOR_AMD, 6, },
+ X86_MATCH_VENDOR_FAM(AMD, 6, NULL),
{}
};
MODULE_DEVICE_TABLE(x86cpu, powernow_k7_cpuids);