diff options
author | Sylvain Munaut <tnt@246tNt.com> | 2006-03-26 06:37:07 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-26 22:48:56 -0500 |
commit | 5931c4350059ce9bd5fe398b628c478753a11e44 (patch) | |
tree | 4df1521e0bf4a809a8f7f54d14990485e3f92859 /arch | |
parent | 37a801c776109dce801875b12525a9eaa12481e6 (diff) |
[PATCH] ppc32: Adds support for the PCI hostbridge in MPC5200B
ppc32: Adds support for the PCI hostbridge in MPC5200B
Signed-off-by: John Rigby <jrigby@freescale.com>
Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ppc/syslib/mpc52xx_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/ppc/syslib/mpc52xx_pci.c b/arch/ppc/syslib/mpc52xx_pci.c index 9ec525f9fe98..5a5a7a9cd248 100644 --- a/arch/ppc/syslib/mpc52xx_pci.c +++ b/arch/ppc/syslib/mpc52xx_pci.c | |||
@@ -225,7 +225,8 @@ mpc52xx_pci_fixup_resources(struct pci_dev *dev) | |||
225 | /* The PCI Host bridge of MPC52xx has a prefetch memory resource | 225 | /* The PCI Host bridge of MPC52xx has a prefetch memory resource |
226 | fixed to 1Gb. Doesn't fit in the resource system so we remove it */ | 226 | fixed to 1Gb. Doesn't fit in the resource system so we remove it */ |
227 | if ( (dev->vendor == PCI_VENDOR_ID_MOTOROLA) && | 227 | if ( (dev->vendor == PCI_VENDOR_ID_MOTOROLA) && |
228 | (dev->device == PCI_DEVICE_ID_MOTOROLA_MPC5200) ) { | 228 | ( dev->device == PCI_DEVICE_ID_MOTOROLA_MPC5200 |
229 | || dev->device == PCI_DEVICE_ID_MOTOROLA_MPC5200B) ) { | ||
229 | struct resource *res = &dev->resource[1]; | 230 | struct resource *res = &dev->resource[1]; |
230 | res->start = res->end = res->flags = 0; | 231 | res->start = res->end = res->flags = 0; |
231 | } | 232 | } |