diff options
author | Gerd Hoffmann | 2012-03-07 15:06:32 +0100 |
---|---|---|
committer | Gerd Hoffmann | 2012-03-13 10:15:32 +0100 |
commit | afb9a60ecb391cbccfd38e6bf400ebfcf40c5d0c (patch) | |
tree | 85c52e53dc2c751c84db838d3ccdae5be00258b4 /hw/mips_malta.c | |
parent | usb: the big rename (diff) | |
download | qemu-afb9a60ecb391cbccfd38e6bf400ebfcf40c5d0c.tar.gz qemu-afb9a60ecb391cbccfd38e6bf400ebfcf40c5d0c.tar.xz qemu-afb9a60ecb391cbccfd38e6bf400ebfcf40c5d0c.zip |
usb: zap hw/ush-{ohic,uhci}.h + init wrappers
Remove the uhci and ohci init wrappers, which all wrapped a
pci_create_simple() one-liner. Switch callsites to call
pci_create_simple directly. Remove the header files where
the wrappers where declared.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'hw/mips_malta.c')
-rw-r--r-- | hw/mips_malta.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/hw/mips_malta.c b/hw/mips_malta.c index b1563ed2a7..866699dbf0 100644 --- a/hw/mips_malta.c +++ b/hw/mips_malta.c @@ -33,7 +33,6 @@ #include "mips.h" #include "mips_cpudevs.h" #include "pci.h" -#include "usb-uhci.h" #include "vmware_vga.h" #include "qemu-char.h" #include "sysemu.h" @@ -965,7 +964,7 @@ void mips_malta_init (ram_addr_t ram_size, isa_bus_irqs(isa_bus, s->i8259); pci_piix4_ide_init(pci_bus, hd, piix4_devfn + 1); - usb_uhci_piix4_init(pci_bus, piix4_devfn + 2); + pci_create_simple(pci_bus, piix4_devfn + 2, "piix4-usb-uhci"); smbus = piix4_pm_init(pci_bus, piix4_devfn + 3, 0x1100, isa_get_irq(NULL, 9), NULL, 0); /* TODO: Populate SPD eeprom data. */ |