diff options
Diffstat (limited to 'board/incaip/incaip.c')
| -rw-r--r-- | board/incaip/incaip.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/board/incaip/incaip.c b/board/incaip/incaip.c index b5d9e0049..dbf0ecc5a 100644 --- a/board/incaip/incaip.c +++ b/board/incaip/incaip.c @@ -25,7 +25,7 @@  #include <command.h>  #include <asm/addrspace.h>  #include <asm/inca-ip.h> - +#include <asm/io.h>  extern uint incaip_get_cpuclk(void); @@ -85,7 +85,6 @@ long int initdram(int board_type)  int checkboard (void)  { -  	unsigned long chipid = *INCA_IP_WDT_CHIPID;  	int part_num; @@ -107,5 +106,7 @@ int checkboard (void)  	printf("CPU Speed %d MHz\n", incaip_get_cpuclk()/1000000); +	set_io_port_base(0); +  	return 0;  } |