diff options
author | wdenk <wdenk> | 2004-10-10 20:23:57 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-10-10 20:23:57 +0000 |
commit | cf33678e51e02143ed67850b3f13646fd51fb489 (patch) | |
tree | 68d8c425710d63d266395181eb592ec61ba3c734 /board/mpc8560ads | |
parent | 08b6aa61545d74afd4a9646adb469cf1320f4d8f (diff) |
* Patch by Jon Loeliger, 24 Aug 2004:
- Fix PCI window on MPC85xx; remove unneeded PCI initialization
from board_early_init_f()
- Provide SW workaround for PCI initialization on 85xx CDS
- Convert MPC85xxADS to use common CFI flash driver
* Cleanup: avoid compiler warnings
* Add CMC PU2 board to MAKEALL script
Diffstat (limited to 'board/mpc8560ads')
-rw-r--r-- | board/mpc8560ads/Makefile | 2 | ||||
-rw-r--r-- | board/mpc8560ads/mpc8560ads.c | 7 |
2 files changed, 1 insertions, 8 deletions
diff --git a/board/mpc8560ads/Makefile b/board/mpc8560ads/Makefile index d150df831c5..5d8ea34946b 100644 --- a/board/mpc8560ads/Makefile +++ b/board/mpc8560ads/Makefile @@ -25,7 +25,7 @@ include $(TOPDIR)/config.mk LIB = lib$(BOARD).a -OBJS := $(BOARD).o flash.o +OBJS := $(BOARD).o SOBJS := init.o #SOBJS := diff --git a/board/mpc8560ads/mpc8560ads.c b/board/mpc8560ads/mpc8560ads.c index ed7139d87eb..1990e54769c 100644 --- a/board/mpc8560ads/mpc8560ads.c +++ b/board/mpc8560ads/mpc8560ads.c @@ -214,13 +214,6 @@ typedef struct bcsr_ { int board_early_init_f (void) { -#if defined(CONFIG_PCI) - volatile immap_t *immr = (immap_t *)CFG_IMMR; - volatile ccsr_pcix_t *pci = &immr->im_pcix; - - pci->peer &= 0xffffffdf; /* disable master abort */ -#endif - return 0; } |