diff options
author | Kumar Gala <galak@kernel.crashing.org> | 2009-09-17 00:01:14 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-01-05 13:49:03 -0600 |
commit | 178e39e199e9c985e5e5e968d60d7243fceb5616 (patch) | |
tree | 328c0e7a61b76b5d28b7543c8001968142936483 /cpu | |
parent | 11588b5dc4c581b2a68a24e3298ab14e83c59d31 (diff) |
ppc/8xxx: Don't use pci_cfg on FSL_CORENET platforms
The FSL_CORENET platforms use a completely different means to determine
which PCIe port is enabled as well as if its a host or agent/end-point.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc8xxx/pci_cfg.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cpu/mpc8xxx/pci_cfg.c b/cpu/mpc8xxx/pci_cfg.c index 9c7d92c4d93..ea129c52a04 100644 --- a/cpu/mpc8xxx/pci_cfg.c +++ b/cpu/mpc8xxx/pci_cfg.c @@ -210,10 +210,12 @@ static struct pci_info pci_config_info[] = .cfg = (1 << 2) | (1 << 4), }, }; +#elif defined(CONFIG_FSL_CORENET) #else #error Need to define pci_config_info for processor #endif +#ifndef CONFIG_FSL_CORENET int is_fsl_pci_agent(enum law_trgt_if trgt, u32 host_agent) { return ((1 << host_agent) & pci_config_info[trgt].agent); @@ -223,3 +225,4 @@ int is_fsl_pci_cfg(enum law_trgt_if trgt, u32 io_sel) { return ((1 << io_sel) & pci_config_info[trgt].cfg); } +#endif |