From 1e78165cdcccd95306604928a145a515498e794a Mon Sep 17 00:00:00 2001 From: Felix Held Date: Wed, 8 Feb 2023 11:39:16 +0100 Subject: arch/x86/include/cpu: introduce CPU_TABLE_END CPU table terminator Instead of having a magic entry in the CPU device ID table list to tell find_cpu_driver that it has reached the end of the list, introduce and use CPU_TABLE_END. Since the vendor entry in the CPU device ID struct is compared against X86_VENDOR_INVALID which is 0, use X86_VENDOR_INVALID instead of the 0 in the CPU_TABLE_END definition. TEST=Timeless build for Mandolin results in identical image. Signed-off-by: Felix Held Suggested-by: Angel Pons Change-Id: I0cae6d65b2265cf5ebf90fe1a9d885d0c489eb92 Reviewed-on: https://review.coreboot.org/c/coreboot/+/72888 Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) Reviewed-by: Fred Reitberger --- src/cpu/intel/model_68x/model_68x_init.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/cpu/intel/model_68x') diff --git a/src/cpu/intel/model_68x/model_68x_init.c b/src/cpu/intel/model_68x/model_68x_init.c index aef66bd226..72d76d032e 100644 --- a/src/cpu/intel/model_68x/model_68x_init.c +++ b/src/cpu/intel/model_68x/model_68x_init.c @@ -54,8 +54,7 @@ static const struct cpu_device_id cpu_table[] = { { X86_VENDOR_INTEL, 0x0686, CPUID_EXACT_MATCH_MASK }, /* PIII/Celeron, cD0/D0/BD0/PD0 */ { X86_VENDOR_INTEL, 0x068a, CPUID_EXACT_MATCH_MASK }, - - { 0, 0, 0 }, + CPU_TABLE_END }; static const struct cpu_driver driver __cpu_driver = { -- cgit v1.2.3