diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2022-10-27 13:54:30 -0700 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2022-11-01 19:14:44 +0100 |
commit | 4b18dc820f8cb8a5e062afbc073738e81efe55d0 (patch) | |
tree | 15465745adda97f8c528a86be1fb089fa63908f9 /include/linux | |
parent | fe33a42c04f63896c776a3a66db735a97c0ca7ab (diff) | |
download | linux-stable-4b18dc820f8cb8a5e062afbc073738e81efe55d0.tar.gz linux-stable-4b18dc820f8cb8a5e062afbc073738e81efe55d0.tar.bz2 linux-stable-4b18dc820f8cb8a5e062afbc073738e81efe55d0.zip |
x86/devicetable: Move x86 specific macro out of generic code
commit ba5bade4cc0d2013cdf5634dae554693c968a090 upstream
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
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/mod_devicetable.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/include/linux/mod_devicetable.h b/include/linux/mod_devicetable.h index f3c631fe076a..e57cd43989fe 100644 --- a/include/linux/mod_devicetable.h +++ b/include/linux/mod_devicetable.h @@ -599,9 +599,7 @@ struct x86_cpu_id { kernel_ulong_t driver_data; }; -#define X86_FEATURE_MATCH(x) \ - { X86_VENDOR_ANY, X86_FAMILY_ANY, X86_MODEL_ANY, x } - +/* Wild cards for x86_cpu_id::vendor, family, model and feature */ #define X86_VENDOR_ANY 0xffff #define X86_FAMILY_ANY 0 #define X86_MODEL_ANY 0 |