mirror of https://gitee.com/openkylin/linux.git
x86/devicetable: Move x86 specific macro out of generic code
There is no reason that this gunk is in a generic header file. The wildcard defines need to stay as they are required by file2alias. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Link: https://lkml.kernel.org/r/20200320131508.736205164@linutronix.de
This commit is contained in:
parent
19d33357ec
commit
ba5bade4cc
|
@ -6,9 +6,20 @@
|
||||||
* Declare drivers belonging to specific x86 CPUs
|
* Declare drivers belonging to specific x86 CPUs
|
||||||
* Similar in spirit to pci_device_id and related PCI functions
|
* Similar in spirit to pci_device_id and related PCI functions
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <linux/mod_devicetable.h>
|
#include <linux/mod_devicetable.h>
|
||||||
|
|
||||||
|
/*
|
||||||
|
* The wildcard initializers are in mod_devicetable.h because
|
||||||
|
* file2alias needs them. Sigh.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#define X86_FEATURE_MATCH(x) { \
|
||||||
|
.vendor = X86_VENDOR_ANY, \
|
||||||
|
.family = X86_FAMILY_ANY, \
|
||||||
|
.model = X86_MODEL_ANY, \
|
||||||
|
.feature = x, \
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Match specific microcode revisions.
|
* Match specific microcode revisions.
|
||||||
*
|
*
|
||||||
|
|
|
@ -48,6 +48,7 @@
|
||||||
#include <asm/kvm_para.h>
|
#include <asm/kvm_para.h>
|
||||||
#include <asm/irq_remapping.h>
|
#include <asm/irq_remapping.h>
|
||||||
#include <asm/spec-ctrl.h>
|
#include <asm/spec-ctrl.h>
|
||||||
|
#include <asm/cpu_device_id.h>
|
||||||
|
|
||||||
#include <asm/virtext.h>
|
#include <asm/virtext.h>
|
||||||
#include "trace.h"
|
#include "trace.h"
|
||||||
|
|
|
@ -31,6 +31,7 @@
|
||||||
#include <asm/apic.h>
|
#include <asm/apic.h>
|
||||||
#include <asm/asm.h>
|
#include <asm/asm.h>
|
||||||
#include <asm/cpu.h>
|
#include <asm/cpu.h>
|
||||||
|
#include <asm/cpu_device_id.h>
|
||||||
#include <asm/debugreg.h>
|
#include <asm/debugreg.h>
|
||||||
#include <asm/desc.h>
|
#include <asm/desc.h>
|
||||||
#include <asm/fpu/internal.h>
|
#include <asm/fpu/internal.h>
|
||||||
|
|
|
@ -30,6 +30,7 @@
|
||||||
#include <asm/msr.h>
|
#include <asm/msr.h>
|
||||||
#include <asm/processor.h>
|
#include <asm/processor.h>
|
||||||
#include <asm/cpufeature.h>
|
#include <asm/cpufeature.h>
|
||||||
|
#include <asm/cpu_device_id.h>
|
||||||
|
|
||||||
MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
|
MODULE_AUTHOR("Paul Diefenbaugh, Dominik Brodowski");
|
||||||
MODULE_DESCRIPTION("ACPI Processor P-States Driver");
|
MODULE_DESCRIPTION("ACPI Processor P-States Driver");
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
#include <asm/msr.h>
|
#include <asm/msr.h>
|
||||||
#include <asm/cpufeature.h>
|
#include <asm/cpufeature.h>
|
||||||
|
#include <asm/cpu_device_id.h>
|
||||||
|
|
||||||
#include "cpufreq_ondemand.h"
|
#include "cpufreq_ondemand.h"
|
||||||
|
|
||||||
|
|
|
@ -667,9 +667,7 @@ struct x86_cpu_id {
|
||||||
kernel_ulong_t driver_data;
|
kernel_ulong_t driver_data;
|
||||||
};
|
};
|
||||||
|
|
||||||
#define X86_FEATURE_MATCH(x) \
|
/* Wild cards for x86_cpu_id::vendor, family, model and feature */
|
||||||
{ X86_VENDOR_ANY, X86_FAMILY_ANY, X86_MODEL_ANY, x }
|
|
||||||
|
|
||||||
#define X86_VENDOR_ANY 0xffff
|
#define X86_VENDOR_ANY 0xffff
|
||||||
#define X86_FAMILY_ANY 0
|
#define X86_FAMILY_ANY 0
|
||||||
#define X86_MODEL_ANY 0
|
#define X86_MODEL_ANY 0
|
||||||
|
|
Loading…
Reference in New Issue