Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/72846 )
Change subject: arch/x86/include/cpu: retype device field in cpu_device_id ......................................................................
arch/x86/include/cpu: retype device field in cpu_device_id
In identify_cpu the uint32_t return value of cpu_get_cpuid gets written to this field.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Ic54f73dcd3496a5ad85291b9b9586bc740b734d5 --- M src/arch/x86/include/arch/cpu.h 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/46/72846/1
diff --git a/src/arch/x86/include/arch/cpu.h b/src/arch/x86/include/arch/cpu.h index 18bc961..26315eb 100644 --- a/src/arch/x86/include/arch/cpu.h +++ b/src/arch/x86/include/arch/cpu.h @@ -113,7 +113,7 @@
struct cpu_device_id { unsigned int vendor; - unsigned int device; + uint32_t device; };
struct cpu_driver {