Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=d20e47e153dcfddca5a066ff0f8da2d1104d08ea
Commit:     d20e47e153dcfddca5a066ff0f8da2d1104d08ea
Parent:     40c7869b693b18412491fdcff64682215b739f9e
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Tue Dec 11 19:49:24 2007 +0000
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Fri Dec 14 17:34:29 2007 +0000

    [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 <[EMAIL PROTECTED]>
---
 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 589b745..6e6981f 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,
        for (i = 0; i < PCI_NUM_RESOURCES; i++) {
                if (!dev->resource[i].start)
                        continue;
+               if (dev->resource[i].flags & IORESOURCE_PCI_FIXED)
+                       continue;
                if (dev->resource[i].flags & IORESOURCE_IO)
                        offset = hose->io_offset;
                else if (dev->resource[i].flags & IORESOURCE_MEM)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to