diff options
| author | Isaku Yamahata <yamahata@valinux.co.jp> | 2010-06-23 16:15:25 +0900 |
|---|---|---|
| committer | Blue Swirl <blauwirbel@gmail.com> | 2010-07-11 19:58:57 +0300 |
| commit | 520128bde824d208c0309bcfcdd6ffc4eb450099 (patch) | |
| tree | 6e82f9d6fa3f966a3abce49c22476ed06c84f1fd /hw/versatile_pci.c | |
| parent | 161f85e6b156e36b869243f49d80bc712b7df076 (diff) | |
| download | focaccia-qemu-520128bde824d208c0309bcfcdd6ffc4eb450099.tar.gz focaccia-qemu-520128bde824d208c0309bcfcdd6ffc4eb450099.zip | |
pci: use PCI_DEVFN() where appropriate.
Use PCI_DEVFN() and PCI_FUNC_MAX where appropriate. This patch make it clear that func = 0. test: The following object files with/without this patch are stripped and compared. They remains same. arm-softmmu/versatile_pci.o libhw32/ppce500_pci.o libhw32/unin_pci.o libhw64/ppce500_pci.o libhw64/unin_pci.o mips-softmmu/gt64xxx.o mips64-softmmu/gt64xxx.o mips64el-softmmu/gt64xxx.o mipsel-softmmu/gt64xxx.o Cc: Aurelien Jarno <aurelien@aurel32.net> Cc: Yu Liu <yu.liu@freescale.com> Cc: Paul Brook <paul@codesourcery.com> Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/versatile_pci.c')
| -rw-r--r-- | hw/versatile_pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/versatile_pci.c b/hw/versatile_pci.c index 199bc1936e..a76bdfad61 100644 --- a/hw/versatile_pci.c +++ b/hw/versatile_pci.c @@ -127,7 +127,7 @@ static int pci_vpb_init(SysBusDevice *dev) } bus = pci_register_bus(&dev->qdev, "pci", pci_vpb_set_irq, pci_vpb_map_irq, s->irq, - 11 << 3, 4); + PCI_DEVFN(11, 0), 4); /* ??? Register memory space. */ |