aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorIsaku Yamahata <yamahata@valinux.co.jp>2009-11-12 14:58:45 +0900
committerMichael S. Tsirkin <mst@redhat.com>2009-12-01 17:52:39 +0200
commitb47b0706f15f9427ffc48b0db61f1b6e52b98b2a (patch)
treeba0981678cc913b7bad8b2c8d0b0e286e8663071 /hw
parent876a350d3daed88c5677397c287c6210cf163f6c (diff)
downloadqemu-b47b0706f15f9427ffc48b0db61f1b6e52b98b2a.zip
qemu-b47b0706f15f9427ffc48b0db61f1b6e52b98b2a.tar.gz
qemu-b47b0706f15f9427ffc48b0db61f1b6e52b98b2a.tar.bz2
pci: remove magic number, 256 in pci.c
This patch replaces magic number, 256, with ARRAY_SIZE(). Signed-off-by: Isaku Yamahata <yamahata@valinux.co.jp> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/pci.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/hw/pci.c b/hw/pci.c
index 49d0648..6d94286 100644
--- a/hw/pci.c
+++ b/hw/pci.c
@@ -487,7 +487,8 @@ static PCIDevice *do_pci_register_device(PCIDevice *pci_dev, PCIBus *bus,
uint8_t header_type)
{
if (devfn < 0) {
- for(devfn = bus->devfn_min ; devfn < 256; devfn += 8) {
+ for(devfn = bus->devfn_min ; devfn < ARRAY_SIZE(bus->devices);
+ devfn += 8) {
if (!bus->devices[devfn])
goto found;
}
@@ -1035,7 +1036,7 @@ static void pci_for_each_device_under_bus(PCIBus *bus,
PCIDevice *d;
int devfn;
- for(devfn = 0; devfn < 256; devfn++) {
+ for(devfn = 0; devfn < ARRAY_SIZE(bus->devices); devfn++) {
d = bus->devices[devfn];
if (d)
fn(bus, d);