diff options
author | Wolfgang Denk <wd@denx.de> | 2009-02-01 21:31:37 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-02-01 21:31:37 +0100 |
commit | ee924e00300bd1136589b2d5f8ad1f008df01bd4 (patch) | |
tree | 4f517ecc2faf55dbaa3145835eef2eac2e0a4033 /cpu/sh4/cpu.c | |
parent | f4b6f45dcba989f5a900edc07ececae80c79abdf (diff) | |
parent | fc01ea1e27d5b124f0a1868d0ce569f156d58dfe (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-net
Diffstat (limited to 'cpu/sh4/cpu.c')
-rw-r--r-- | cpu/sh4/cpu.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cpu/sh4/cpu.c b/cpu/sh4/cpu.c index d94e139815e..52b6cfd684e 100644 --- a/cpu/sh4/cpu.c +++ b/cpu/sh4/cpu.c @@ -82,3 +82,11 @@ int dcache_status (void) { return 0; } + +int cpu_eth_init(bd_t *bis) +{ +#ifdef CONFIG_SH_ETHER + sh_eth_initialize(bis); +#endif + return 0; +} |