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/soc/intel/baytrail/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/intel/baytrail') diff --git a/src/soc/intel/baytrail/cpu.c b/src/soc/intel/baytrail/cpu.c index db0c4ee168..2a4616cec3 100644 --- a/src/soc/intel/baytrail/cpu.c +++ b/src/soc/intel/baytrail/cpu.c @@ -62,7 +62,7 @@ static const struct cpu_device_id cpu_table[] = { { X86_VENDOR_INTEL, 0x30673, CPUID_EXACT_MATCH_MASK }, { X86_VENDOR_INTEL, 0x30678, CPUID_EXACT_MATCH_MASK }, { X86_VENDOR_INTEL, 0x30679, CPUID_EXACT_MATCH_MASK }, - { 0, 0, 0 }, + CPU_TABLE_END }; static const struct cpu_driver driver __cpu_driver = { -- cgit v1.2.3