summaryrefslogtreecommitdiff
path: root/board/tb0229
diff options
context:
space:
mode:
Diffstat (limited to 'board/tb0229')
-rw-r--r--board/tb0229/tb0229.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/board/tb0229/tb0229.c b/board/tb0229/tb0229.c
index e7914bd15..61c2e9bd3 100644
--- a/board/tb0229/tb0229.c
+++ b/board/tb0229/tb0229.c
@@ -13,10 +13,9 @@
#include <command.h>
#include <asm/addrspace.h>
#include <asm/inca-ip.h>
+#include <asm/io.h>
#include <pci.h>
-unsigned long mips_io_port_base = 0;
-
#if defined(CONFIG_PCI)
static struct pci_controller hose;
@@ -26,17 +25,17 @@ void pci_init_board (void)
}
#endif
-
long int initdram(int board_type)
{
return get_ram_size (CFG_SDRAM_BASE, 0x8000000);
}
-
int checkboard (void)
{
printf("Board: TANBAC TB0229 ");
printf("(CPU Speed %d MHz)\n", (int)CPU_CLOCK_RATE/1000000);
+ set_io_port_base(0);
+
return 0;
}