diff options
author | Marian Balakowicz <m8@semihalf.com> | 2006-06-30 16:30:46 +0200 |
---|---|---|
committer | Marian Balakowicz <m8@semihalf.com> | 2006-06-30 16:30:46 +0200 |
commit | 6c5879f380be38d85fef0d3aba3353358f4b2ff4 (patch) | |
tree | 32b48cff57dafc910c7b0dfdd6c5b99109c21e46 /drivers | |
parent | bb105f24cc90ec4c56ea13012acc3d763b2a2984 (diff) | |
download | u-boot-imx-6c5879f380be38d85fef0d3aba3353358f4b2ff4.zip u-boot-imx-6c5879f380be38d85fef0d3aba3353358f4b2ff4.tar.gz u-boot-imx-6c5879f380be38d85fef0d3aba3353358f4b2ff4.tar.bz2 |
Add support for AMCC 440SPe CPU based eval board (Yucca).
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci_indirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci_indirect.c b/drivers/pci_indirect.c index e8f19f5..0ae4701 100644 --- a/drivers/pci_indirect.c +++ b/drivers/pci_indirect.c @@ -52,7 +52,7 @@ indirect_##rw##_config_##size(struct pci_controller *hose, \ cfg_##rw(val, hose->cfg_data + (offset & mask), type, op); \ return 0; \ } -#elif defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR) +#elif defined(CONFIG_440GX) || defined(CONFIG_440EP) || defined(CONFIG_440GR) || defined(CONFIG_440SPE) #define INDIRECT_PCI_OP(rw, size, type, op, mask) \ static int \ indirect_##rw##_config_##size(struct pci_controller *hose, \ |