From e1a84db3e0aa2cd77a299bd86ba23dd0e3e9c038 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Mon, 6 Feb 2023 19:45:14 +0100 Subject: 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 Change-Id: Ic96746b33b01781543f60cf91904af35418e572d Reviewed-on: https://review.coreboot.org/c/coreboot/+/72859 Reviewed-by: Fred Reitberger Tested-by: build bot (Jenkins) --- src/arch/x86/cpu.c | 5 ----- src/arch/x86/include/arch/cpu.h | 5 +++++ 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'src/arch') 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; -- cgit v1.2.3