diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-12-11 14:49:24 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-12-14 12:34:29 -0500 |
commit | d20e47e153dcfddca5a066ff0f8da2d1104d08ea (patch) | |
tree | f587d4b9b7c67ca5ced4e9eb1ebdcfafcd259a55 /arch/mips/pci | |
parent | 40c7869b693b18412491fdcff64682215b739f9e (diff) |
[MIPS] PCI: Make pcibios_fixup_device_resources ignore legacy resources.
There might be other reasons why a resource might be marked as fixed
such as a PCI UART holding the system console but until we use
IORESOURCE_PCI_FIXED that way also this will work.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/pci')
-rw-r--r-- | arch/mips/pci/pci.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/pci/pci.c b/arch/mips/pci/pci.c index 589b745d822a..6e6981fd7934 100644 --- a/arch/mips/pci/pci.c +++ b/arch/mips/pci/pci.c | |||
@@ -242,6 +242,8 @@ static void pcibios_fixup_device_resources(struct pci_dev *dev, | |||
242 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { | 242 | for (i = 0; i < PCI_NUM_RESOURCES; i++) { |
243 | if (!dev->resource[i].start) | 243 | if (!dev->resource[i].start) |
244 | continue; | 244 | continue; |
245 | if (dev->resource[i].flags & IORESOURCE_PCI_FIXED) | ||
246 | continue; | ||
245 | if (dev->resource[i].flags & IORESOURCE_IO) | 247 | if (dev->resource[i].flags & IORESOURCE_IO) |
246 | offset = hose->io_offset; | 248 | offset = hose->io_offset; |
247 | else if (dev->resource[i].flags & IORESOURCE_MEM) | 249 | else if (dev->resource[i].flags & IORESOURCE_MEM) |