diff options
author | Wolfgang Denk <wd@denx.de> | 2009-10-12 23:40:27 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-10-12 23:40:27 +0200 |
commit | 14abfe361b3ed23b02f564e2f5d663e158cd5799 (patch) | |
tree | 76ccf4f0ce3bb2d8c0fda116ee3d0e10de262af5 /lib_avr32 | |
parent | 285870f75378aca41c5063e4358ad93bf3014fd8 (diff) | |
parent | be2254423b86572841aa70ff05d20933d1b49823 (diff) | |
download | u-boot-imx-14abfe361b3ed23b02f564e2f5d663e158cd5799.zip u-boot-imx-14abfe361b3ed23b02f564e2f5d663e158cd5799.tar.gz u-boot-imx-14abfe361b3ed23b02f564e2f5d663e158cd5799.tar.bz2 |
Merge branch 'master' of /home/wd/git/u-boot/custodians
Diffstat (limited to 'lib_avr32')
-rw-r--r-- | lib_avr32/board.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib_avr32/board.c b/lib_avr32/board.c index 29999d8..917ed6c 100644 --- a/lib_avr32/board.c +++ b/lib_avr32/board.c @@ -27,6 +27,10 @@ #include <version.h> #include <net.h> +#ifdef CONFIG_BITBANGMII +#include <miiphy.h> +#endif + #include <asm/initcalls.h> #include <asm/sections.h> @@ -337,6 +341,9 @@ void board_init_r(gd_t *new_gd, ulong dest_addr) if (s) load_addr = simple_strtoul(s, NULL, 16); +#ifdef CONFIG_BITBANGMII + bb_miiphy_init(); +#endif #if defined(CONFIG_CMD_NET) s = getenv("bootfile"); if (s) |