diff options
| author | Gerd Hoffmann <kraxel@redhat.com> | 2009-09-15 20:00:53 +0000 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2009-09-15 20:00:53 +0000 |
| commit | 9a43dba0d6ae6d15b7344a073594a44f33a43721 (patch) | |
| tree | aa4111cabff5430f8bf0d507d28be52f1e750883 /hw/ide/pci.c | |
| parent | da4d04197aef7118d0483b5010c919d2986ac59c (diff) | |
| download | focaccia-qemu-9a43dba0d6ae6d15b7344a073594a44f33a43721.tar.gz focaccia-qemu-9a43dba0d6ae6d15b7344a073594a44f33a43721.zip | |
ide/pci: fix indention
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ide/pci.c')
| -rw-r--r-- | hw/ide/pci.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/hw/ide/pci.c b/hw/ide/pci.c index 607472bb55..e3b43a0e52 100644 --- a/hw/ide/pci.c +++ b/hw/ide/pci.c @@ -404,15 +404,15 @@ void pci_cmd646_ide_init(PCIBus *bus, DriveInfo **hd_table, } pci_register_bar((PCIDevice *)d, 0, 0x8, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 1, 0x4, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 2, 0x8, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 3, 0x4, - PCI_ADDRESS_SPACE_IO, ide_map); + PCI_ADDRESS_SPACE_IO, ide_map); pci_register_bar((PCIDevice *)d, 4, 0x10, - PCI_ADDRESS_SPACE_IO, bmdma_map); + PCI_ADDRESS_SPACE_IO, bmdma_map); pci_conf[0x3d] = 0x01; // interrupt on pin 1 @@ -466,7 +466,7 @@ void pci_piix3_ide_init(PCIBus *bus, DriveInfo **hd_table, int devfn) piix3_reset(d); pci_register_bar((PCIDevice *)d, 4, 0x10, - PCI_ADDRESS_SPACE_IO, bmdma_map); + PCI_ADDRESS_SPACE_IO, bmdma_map); ide_init2(&d->bus[0], hd_table[0], hd_table[1], isa_reserve_irq(14)); ide_init2(&d->bus[1], hd_table[2], hd_table[3], isa_reserve_irq(15)); |