diff options
| author | Kumar Gala <galak@kernel.crashing.org> | 2008-06-09 13:37:24 -0500 | 
|---|---|---|
| committer | Andrew Fleming-AFLEMING <afleming@freescale.com> | 2008-06-11 00:35:52 -0500 | 
| commit | 978e81604c1b28526ed580df0fbe64eb8384e94f (patch) | |
| tree | 4eaa59326e6756fa53f55d678cdf66fc6ee96467 /board/freescale/mpc8540ads/mpc8540ads.c | |
| parent | a23cddde1a95f987e3fe2a720a7ec9375b7264d7 (diff) | |
| download | olio-uboot-2014.01-978e81604c1b28526ed580df0fbe64eb8384e94f.tar.xz olio-uboot-2014.01-978e81604c1b28526ed580df0fbe64eb8384e94f.zip | |
85xx: Remove unused and unconfigured memory test code.
Remove unused and unconfigured DDR test code from FSL 85xx boards.
Besides, other common code exists.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'board/freescale/mpc8540ads/mpc8540ads.c')
| -rw-r--r-- | board/freescale/mpc8540ads/mpc8540ads.c | 36 | 
1 files changed, 0 insertions, 36 deletions
| diff --git a/board/freescale/mpc8540ads/mpc8540ads.c b/board/freescale/mpc8540ads/mpc8540ads.c index a951b9e9a..ea1fbd1fb 100644 --- a/board/freescale/mpc8540ads/mpc8540ads.c +++ b/board/freescale/mpc8540ads/mpc8540ads.c @@ -230,42 +230,6 @@ sdram_init(void)  	udelay(100);  } - -#if defined(CFG_DRAM_TEST) -int testdram (void) -{ -	uint *pstart = (uint *) CFG_MEMTEST_START; -	uint *pend = (uint *) CFG_MEMTEST_END; -	uint *p; - -	printf("SDRAM test phase 1:\n"); -	for (p = pstart; p < pend; p++) -		*p = 0xaaaaaaaa; - -	for (p = pstart; p < pend; p++) { -		if (*p != 0xaaaaaaaa) { -			printf ("SDRAM test fails at: %08x\n", (uint) p); -			return 1; -		} -	} - -	printf("SDRAM test phase 2:\n"); -	for (p = pstart; p < pend; p++) -		*p = 0x55555555; - -	for (p = pstart; p < pend; p++) { -		if (*p != 0x55555555) { -			printf ("SDRAM test fails at: %08x\n", (uint) p); -			return 1; -		} -	} - -	printf("SDRAM test passed.\n"); -	return 0; -} -#endif - -  #if !defined(CONFIG_SPD_EEPROM)  /*************************************************************************   *  fixed sdram init -- doesn't use serial presence detect. |