diff options
author | wdenk <wdenk> | 2003-05-22 22:52:13 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-05-22 22:52:13 +0000 |
commit | 5d232d0e7ea982d859d028ab482d95eb68460b19 (patch) | |
tree | a02c773fa4be5687f8f97d053ebd9afebbfaa54f /drivers/pci_indirect.c | |
parent | c8c3a8be2dd09e51d7dc33f431e3a638ac5688f2 (diff) | |
download | u-boot-imx-5d232d0e7ea982d859d028ab482d95eb68460b19.zip u-boot-imx-5d232d0e7ea982d859d028ab482d95eb68460b19.tar.gz u-boot-imx-5d232d0e7ea982d859d028ab482d95eb68460b19.tar.bz2 |
* Patch by Dave Ellis, 22 May 2003:
Fix problem with only partially cleared .bss segment
* Patch by Rune Torgersen, 12 May 2003:
get PCI to work on a MPC8266ADS board; incorporate change to
cpu/mpc8260/pci.c to enable overrides of PCI memory parameters
Diffstat (limited to 'drivers/pci_indirect.c')
-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 fdf4d13..05cfbd9 100644 --- a/drivers/pci_indirect.c +++ b/drivers/pci_indirect.c @@ -21,7 +21,7 @@ #define cfg_read(val, addr, type, op) *val = op((type)(addr)) #define cfg_write(val, addr, type, op) op((type *)(addr), (val)) -#if defined(CONFIG_PM826) || defined(CONFIG_ATC) +#if defined(CONFIG_MPC8260) #define INDIRECT_PCI_OP(rw, size, type, op, mask) \ static int \ indirect_##rw##_config_##size(struct pci_controller *hose, \ |