diff options
author | wdenk <wdenk> | 2005-01-12 00:15:14 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2005-01-12 00:15:14 +0000 |
commit | 289f932c5ff628bf21a05073243071a01a2d3b02 (patch) | |
tree | adfa2abf61660375c7d3609b100f18f1b30dde90 /board/ixdp425 | |
parent | 082acfd4849d2f0471b0709fe7f5ce1de387437d (diff) |
* Some Cleanup.
* Patch by Richard Woodruff, 10 Jan 2005:
Update support for OMAP2420 (ARM11) and H4 board:
o clean up and add new types to H4 memory probe code.
o fix to work with internal boot.
o added PRCM config III operation.
o fix marginal flash timings.
o add revison ATAG usage.
o enable voltage scaling at power chip.
o fix compile error for i2c.
* Fix network problem (error when receiving multiple ARP packets)
Diffstat (limited to 'board/ixdp425')
-rw-r--r-- | board/ixdp425/ixdp425.c | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/board/ixdp425/ixdp425.c b/board/ixdp425/ixdp425.c index e56f4779fa9..80553ba015a 100644 --- a/board/ixdp425/ixdp425.c +++ b/board/ixdp425/ixdp425.c @@ -38,18 +38,16 @@ * Miscelaneous platform dependent initialisations */ -int -/**********************************************************/ -board_post_init (void) /**********************************************************/ + +int board_post_init (void) { return (0); } -int -/**********************************************************/ -board_init (void) /**********************************************************/ + +int board_init (void) { DECLARE_GLOBAL_DATA_PTR; @@ -62,10 +60,9 @@ board_init (void) return 0; } -int -/**********************************************************/ -dram_init (void) /**********************************************************/ + +int dram_init (void) { DECLARE_GLOBAL_DATA_PTR; @@ -74,9 +71,14 @@ dram_init (void) return (0); } + +/**********************************************************/ + extern struct pci_controller hose; + void pci_init_board(void) { + extern void pci_ixp_init (struct pci_controller *hose); + pci_ixp_init(&hose); - return ; } |