cpu/emulation/qemu-x86 doesn't exist anymore, as this
is folded into mainboard/emulation/qemu-x86. Adapt code. Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5376 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
2bbd0c2926
commit
35784b62cd
|
@ -3,9 +3,9 @@ extern struct chip_operations mainboard_ops;
|
|||
struct mainboard_config {
|
||||
};
|
||||
|
||||
struct cpu_emulation_qemu_x86_config
|
||||
struct mainboard_emulation_qemu_x86_config
|
||||
{
|
||||
};
|
||||
|
||||
extern struct chip_operations cpu_emulation_qemu_x86_ops;
|
||||
extern struct chip_operations mainboard_emulation_qemu_x86_ops;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
chip cpu/emulation/qemu-x86
|
||||
chip mainboard/emulation/qemu-x86
|
||||
device pci_domain 0 on
|
||||
device pci 0.0 on end
|
||||
|
||||
|
|
|
@ -152,7 +152,7 @@ static void enable_dev(struct device *dev)
|
|||
}
|
||||
}
|
||||
|
||||
struct chip_operations cpu_emulation_qemu_x86_ops = {
|
||||
struct chip_operations mainboard_emulation_qemu_x86_ops = {
|
||||
CHIP_NAME("QEMU Northbridge")
|
||||
.enable_dev = enable_dev,
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue