Patrick Rudolph has uploaded this change for review. ( https://review.coreboot.org/29675
Change subject: cpu/qemu-x86: Fix CPU driver ......................................................................
cpu/qemu-x86: Fix CPU driver
There's a typo in the cpu driver causing it to always use the weak implementation defined in the devicetree instead of the real implementation.
Tested on qemu-q35, the CPU driver contains valid values.
Change-Id: I4a6bb447bfdb3df6053c0df8be9d7c6aa8f689be Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com --- M src/cpu/qemu-x86/qemu.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/29675/1
diff --git a/src/cpu/qemu-x86/qemu.c b/src/cpu/qemu-x86/qemu.c index c005bf7..f250698 100644 --- a/src/cpu/qemu-x86/qemu.c +++ b/src/cpu/qemu-x86/qemu.c @@ -35,6 +35,6 @@ .id_table = cpu_table, };
-struct chip_operations cpu_x86_qemu_ops = { +struct chip_operations cpu_qemu_x86_ops = { CHIP_NAME("QEMU x86 CPU") };