diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-02-06 19:45:14 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-08 15:48:44 +0000 |
commit | e1a84db3e0aa2cd77a299bd86ba23dd0e3e9c038 (patch) | |
tree | 8935ed3f331235eb7e50df9b4c039d6ba48aa517 | |
parent | 558952ae7c8b47e20cfd3daaa98db9c49b353776 (diff) |
arch/x86/cpu: move cpuid_match to corresponding header file
Since the functionality of cpuid_match is also useful outside of
arch/x86/cpu.c and it's a relatively simple function, move its
definition as inline function to the header file.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ic96746b33b01781543f60cf91904af35418e572d
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72859
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/arch/x86/cpu.c | 5 | ||||
-rw-r--r-- | src/arch/x86/include/arch/cpu.h | 5 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/arch/x86/cpu.c b/src/arch/x86/cpu.c index 53c9a7ba7f..b0227c2947 100644 --- a/src/arch/x86/cpu.c +++ b/src/arch/x86/cpu.c @@ -188,11 +188,6 @@ static void identify_cpu(struct device *cpu) } } -static bool cpuid_match(uint32_t a, uint32_t b, uint32_t mask) -{ - return (a & mask) == (b & mask); -} - struct cpu_driver *find_cpu_driver(struct device *cpu) { struct cpu_driver *driver; diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h index 8bf06e5a42..cd8f8b4c97 100644 --- a/src/arch/x86/include/arch/cpu.h +++ b/src/arch/x86/include/arch/cpu.h @@ -124,6 +124,11 @@ struct device; #define CPUID_EXACT_MATCH_MASK 0xffffffff #define CPUID_ALL_STEPPINGS_MASK 0xfffffff0 +static inline bool cpuid_match(uint32_t a, uint32_t b, uint32_t mask) +{ + return (a & mask) == (b & mask); +} + struct cpu_device_id { unsigned int vendor; uint32_t device; |