diff options
Diffstat (limited to 'common/env_flash.c')
| -rw-r--r-- | common/env_flash.c | 20 | 
1 files changed, 1 insertions, 19 deletions
| diff --git a/common/env_flash.c b/common/env_flash.c index 7a37e550d..eccfb62a3 100644 --- a/common/env_flash.c +++ b/common/env_flash.c @@ -107,13 +107,6 @@ int  env_init(void)  	ulong addr1 = (ulong)&(flash_addr->data);  	ulong addr2 = (ulong)&(flash_addr_new->data); -#ifdef CONFIG_OMAP2420H4 -	int flash_probe(void); - -	if(flash_probe() == 0) -		goto bad_flash; -#endif -  	crc1_ok = (crc32(0, flash_addr->data, ENV_SIZE) == flash_addr->crc);  	crc2_ok = (crc32(0, flash_addr_new->data, ENV_SIZE) == flash_addr_new->crc); @@ -143,9 +136,6 @@ int  env_init(void)  		gd->env_valid = 2;  	} -#ifdef CONFIG_OMAP2420H4 -bad_flash: -#endif  	return (0);  } @@ -259,20 +249,12 @@ Done:  int  env_init(void)  { -#ifdef CONFIG_OMAP2420H4 -	int flash_probe(void); - -	if(flash_probe() == 0) -		goto bad_flash; -#endif  	if (crc32(0, env_ptr->data, ENV_SIZE) == env_ptr->crc) {  		gd->env_addr  = (ulong)&(env_ptr->data);  		gd->env_valid = 1;  		return(0);  	} -#ifdef CONFIG_OMAP2420H4 -bad_flash: -#endif +  	gd->env_addr  = (ulong)&default_environment[0];  	gd->env_valid = 0;  	return (0); |