diff options
author | Li-Ta Lo <ollie@lanl.gov> | 2005-01-13 05:51:48 +0000 |
---|---|---|
committer | Li-Ta Lo <ollie@lanl.gov> | 2005-01-13 05:51:48 +0000 |
commit | d8ad7df7002963fb42d59fda6dbc42e6003fd065 (patch) | |
tree | 2bf82874d77b0367c60d24bf48f8efad2a2ff8ef /src/devices/pci_device.c | |
parent | bc5399aa6eeef558edaab07d94340b3780661c61 (diff) |
fixed a logic bug
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1864 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/pci_device.c')
-rw-r--r-- | src/devices/pci_device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/pci_device.c b/src/devices/pci_device.c index 44c223a89e..fb84811cee 100644 --- a/src/devices/pci_device.c +++ b/src/devices/pci_device.c @@ -224,7 +224,7 @@ static void pci_get_rom_resource(struct device *dev, unsigned long index) /* for on board device with embedded ROM image, the ROM image is at * fixed address specified in the Config.lb, the dev->rom_address is * inited by driver_pci_onboard_ops::enable_dev() */ - if ((dev->on_mainboard) && (dev->rom_address == 0)) { + if ((dev->on_mainboard) && (dev->rom_address != 0)) { resource->base = dev->rom_address; resource->flags |= IORESOURCE_MEM | IORESOURCE_READONLY | IORESOURCE_ASSIGNED | IORESOURCE_FIXED; |