diff options
author | John Rigby <jrigby@freescale.com> | 2008-10-07 15:00:20 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2008-10-13 12:09:58 -0400 |
commit | 4a015c37409ead893b659c2f89f1aa1fdf512115 (patch) | |
tree | 37acb261114aa2544f12b5c48db9bbfaa91a7141 /arch/powerpc/kernel/pci_32.c | |
parent | 62666828bae7057835d982367e98716a1bd0fd40 (diff) |
powerpc/fsl: Hide MPC5121 pci bridge.
The class of the MPC5121 pci host bridge is PCI_CLASS_BRIDGE_OTHER
while other freescale host bridges have class set to
PCI_CLASS_PROCESSOR_POWERPC.
This patch makes fixup_hide_host_resource_fsl match
PCI_CLASS_BRIDGE_OTHER in addition to PCI_CLASS_PROCESSOR_POWERPC.
Signed-off-by: John Rigby <jrigby@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/pci_32.c')
-rw-r--r-- | arch/powerpc/kernel/pci_32.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/powerpc/kernel/pci_32.c b/arch/powerpc/kernel/pci_32.c index 174b77ee18ff..a848c6360bd1 100644 --- a/arch/powerpc/kernel/pci_32.c +++ b/arch/powerpc/kernel/pci_32.c | |||
@@ -54,11 +54,12 @@ LIST_HEAD(hose_list); | |||
54 | static int pci_bus_count; | 54 | static int pci_bus_count; |
55 | 55 | ||
56 | static void | 56 | static void |
57 | fixup_hide_host_resource_fsl(struct pci_dev* dev) | 57 | fixup_hide_host_resource_fsl(struct pci_dev *dev) |
58 | { | 58 | { |
59 | int i, class = dev->class >> 8; | 59 | int i, class = dev->class >> 8; |
60 | 60 | ||
61 | if ((class == PCI_CLASS_PROCESSOR_POWERPC) && | 61 | if ((class == PCI_CLASS_PROCESSOR_POWERPC || |
62 | class == PCI_CLASS_BRIDGE_OTHER) && | ||
62 | (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) && | 63 | (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) && |
63 | (dev->bus->parent == NULL)) { | 64 | (dev->bus->parent == NULL)) { |
64 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { | 65 | for (i = 0; i < DEVICE_COUNT_RESOURCE; i++) { |