diff options
author | Isaku Yamahata <yamahata@valinux.co.jp> | 2009-11-12 14:58:34 +0900 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2009-12-01 17:51:37 +0200 |
commit | f08b32fe959c157d3c3acdad9c7bfe56b5597af1 (patch) | |
tree | 24a4eadb38a76c490d018dea62b1aba3ef0aeaf3 /hw/prep_pci.c | |
parent | 8d6514f8dd2a8102ec3d577b13cb565fb9cfe73c (diff) |
pci: shorten pci_host_{conf, data}_register_xxx function a bit.
pci_host_data_register_io_memory and its variants are too long a bit.
So shorten them. Now they are
pci_host_{conf, data}_register_{mmio, mmio_noswap, ioport}()
Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw/prep_pci.c')
-rw-r--r-- | hw/prep_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/prep_pci.c b/hw/prep_pci.c index 80e20ac1ae..19f028c7b7 100644 --- a/hw/prep_pci.c +++ b/hw/prep_pci.c @@ -128,7 +128,7 @@ PCIBus *pci_prep_init(qemu_irq *pic) s->bus = pci_register_bus(NULL, "pci", prep_set_irq, prep_map_irq, pic, 0, 4); - pci_host_config_register_ioport(0xcf8, s); + pci_host_conf_register_ioport(0xcf8, s); pci_host_data_register_ioport(0xcfc, s); |