summaryrefslogtreecommitdiffstats
path: root/board/bubinga405ep/bubinga405ep.c
diff options
context:
space:
mode:
authorstroese <stroese>2003-12-09 14:54:43 +0000
committerstroese <stroese>2003-12-09 14:54:43 +0000
commitb828dda657dd26b5580c4a85e5680a5d16352a4c (patch)
tree60eed193717770e0ac566e362c36d706d9a35301 /board/bubinga405ep/bubinga405ep.c
parent4e5ca3eb670460cd5ad9b07fa4aafc0dee6178be (diff)
downloadtalos-obmc-uboot-b828dda657dd26b5580c4a85e5680a5d16352a4c.tar.gz
talos-obmc-uboot-b828dda657dd26b5580c4a85e5680a5d16352a4c.zip
BUBINGA405EP port fixed.
Diffstat (limited to 'board/bubinga405ep/bubinga405ep.c')
-rw-r--r--board/bubinga405ep/bubinga405ep.c18
1 files changed, 5 insertions, 13 deletions
diff --git a/board/bubinga405ep/bubinga405ep.c b/board/bubinga405ep/bubinga405ep.c
index eb9baf4a38..8694ebe904 100644
--- a/board/bubinga405ep/bubinga405ep.c
+++ b/board/bubinga405ep/bubinga405ep.c
@@ -23,7 +23,6 @@
long int spd_sdram (void);
#include <common.h>
-#include "bubinga405ep.h"
#include <asm/processor.h>
@@ -82,18 +81,11 @@ int checkboard (void)
unsigned char *s = getenv ("serial#");
unsigned char *e;
- puts ("Board: ");
-
- if (!s || strncmp (s, "BUBINGA405EP", 9)) {
- puts ("### No HW ID - assuming WALNUT405");
- } else {
- for (e = s; *e; ++e) {
- if (*e == ' ')
- break;
- }
- for (; s < e; ++s) {
- putc (*s);
- }
+ puts ("Board: IBM 405EP Eval Board");
+
+ if (s != NULL) {
+ puts (", serial# ");
+ puts (s);
}
putc ('\n');
OpenPOWER on IntegriCloud