diff options
Diffstat (limited to 'board/esd/ocrtc')
| -rw-r--r-- | board/esd/ocrtc/ocrtc.c | 32 | 
1 files changed, 0 insertions, 32 deletions
| diff --git a/board/esd/ocrtc/ocrtc.c b/board/esd/ocrtc/ocrtc.c index 7b0edd595..35bfa95f2 100644 --- a/board/esd/ocrtc/ocrtc.c +++ b/board/esd/ocrtc/ocrtc.c @@ -62,13 +62,6 @@ int board_early_init_f (void)  	return 0;  } - -int misc_init_f (void) -{ -	return 0;					/* dummy implementation */ -} - -  /*   * Check Board Identity:   */ @@ -99,28 +92,3 @@ int checkboard (void)  	return (0);  } - - -phys_size_t initdram (int board_type) -{ -	unsigned long val; - -	mtdcr (memcfga, mem_mb0cf); -	val = mfdcr (memcfgd); - -#if 0 -	printf ("\nmb0cf=%x\n", val);	/* test-only */ -	printf ("strap=%x\n", mfdcr (strap));	/* test-only */ -#endif - -	return (4 * 1024 * 1024 << ((val & 0x000e0000) >> 17)); -} - - -int testdram (void) -{ -	/* TODO: XXX XXX XXX */ -	printf ("test: 16 MB - ok\n"); - -	return (0); -} |