Commit 4468f01d authored by Olof Johansson's avatar Olof Johansson Committed by Paul Mackerras

[POWERPC] Fix OF pci flags parsing

For PCI devices with only io ports, of_bus_pci_get_flags() will fall
through and still mark the resource as IORESOURCE_MEM.
Signed-off-by: default avatarOlof Johansson <olof@lixom.net>
Acked-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent ede8edb3
...@@ -160,9 +160,11 @@ static unsigned int of_bus_pci_get_flags(const u32 *addr) ...@@ -160,9 +160,11 @@ static unsigned int of_bus_pci_get_flags(const u32 *addr)
switch((w >> 24) & 0x03) { switch((w >> 24) & 0x03) {
case 0x01: case 0x01:
flags |= IORESOURCE_IO; flags |= IORESOURCE_IO;
break;
case 0x02: /* 32 bits */ case 0x02: /* 32 bits */
case 0x03: /* 64 bits */ case 0x03: /* 64 bits */
flags |= IORESOURCE_MEM; flags |= IORESOURCE_MEM;
break;
} }
if (w & 0x40000000) if (w & 0x40000000)
flags |= IORESOURCE_PREFETCH; flags |= IORESOURCE_PREFETCH;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment