summaryrefslogtreecommitdiff
path: root/board/esd/vom405
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2005-11-15 10:35:59 +0100
committerStefan Roese <sr@denx.de>2005-11-15 10:35:59 +0100
commitfeaedfcf84c92599c0b805f66cc8a628d82411f0 (patch)
tree82c6d3e4af8ce6e4745de86f1b401b6959056ef4 /board/esd/vom405
parent3ada834e30a0742991209140049035c626ccea85 (diff)
New PPC 405EP board added: CMS700
Added CONFIG_NET_MULTI for VOM405 board. Added reset_phy() for VOM405 board. Patch by Matthias Fuchs, 09 Nov 2005
Diffstat (limited to 'board/esd/vom405')
-rw-r--r--board/esd/vom405/vom405.c22
1 files changed, 7 insertions, 15 deletions
diff --git a/board/esd/vom405/vom405.c b/board/esd/vom405/vom405.c
index 70bc6db96..445b8fc57 100644
--- a/board/esd/vom405/vom405.c
+++ b/board/esd/vom405/vom405.c
@@ -79,12 +79,6 @@ int board_early_init_f (void)
/* ------------------------------------------------------------------------- */
-int misc_init_f (void)
-{
- return 0; /* dummy implementation */
-}
-
-
int misc_init_r (void)
{
DECLARE_GLOBAL_DATA_PTR;
@@ -132,11 +126,6 @@ int checkboard (void)
}
*led_reg = 0x40;
- /*
- * Disable sleep mode in LXT971
- */
- lxt971_no_sleep();
-
return 0;
}
@@ -159,10 +148,13 @@ long int initdram (int board_type)
/* ------------------------------------------------------------------------- */
-int testdram (void)
+void reset_phy(void)
{
- /* TODO: XXX XXX XXX */
- printf ("test: 16 MB - ok\n");
+#ifdef CONFIG_LXT971_NO_SLEEP
- return (0);
+ /*
+ * Disable sleep mode in LXT971
+ */
+ lxt971_no_sleep();
+#endif
}