diff options
Diffstat (limited to 'board/etin/debris/flash.c')
| -rw-r--r-- | board/etin/debris/flash.c | 12 | 
1 files changed, 6 insertions, 6 deletions
| diff --git a/board/etin/debris/flash.c b/board/etin/debris/flash.c index a4100e57b..a3c813884 100644 --- a/board/etin/debris/flash.c +++ b/board/etin/debris/flash.c @@ -71,7 +71,7 @@ static uint16_t cfi_read_query(flash_info_t *flash, uint32_t addr)  	return (uint16_t)read32(base + addr);  } -flash_info_t    flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */ +flash_info_t    flash_info[CONFIG_SYS_MAX_FLASH_BANKS]; /* info for FLASH chips */  static void move64(uint64_t *src, uint64_t *dest)  { @@ -99,7 +99,7 @@ static int cfi_write_dword(flash_info_t *flash, ulong dest, cfi_word data)  		status &= CMD(0x80);  		if(status == CMD(0x80))  			break; -		if (get_timer(start) > CFG_FLASH_WRITE_TOUT) { +		if (get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT) {  			cfi_cmd(flash, 0xff, 0);  			return 1;  		} @@ -128,7 +128,7 @@ static int jedec_write_dword (flash_info_t *flash, ulong dest, cfi_word data)  	start = get_timer (0);  	status = ~data;  	while(status != data) { -		if (get_timer(start) > CFG_FLASH_WRITE_TOUT) +		if (get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT)  			return 1;  		status = cfi_read(flash, dest);  		udelay(1); @@ -230,7 +230,7 @@ static int cfi_erase_oneblock(flash_info_t *flash, uint32_t sect)  		status &= CMD(0x80);  		if (status == CMD(0x80))  			break; -		if ((now = get_timer(start)) > CFG_FLASH_ERASE_TOUT) { +		if ((now = get_timer(start)) > CONFIG_SYS_FLASH_ERASE_TOUT) {  			cfi_cmd(flash, 0xff, 0);  			printf ("Timeout\n");  			return ERR_TIMOUT; @@ -296,7 +296,7 @@ static int jedec_erase(flash_info_t *flash, uint32_t s_first, uint32_t s_last)  		if (status == CMD(0xffff))  			break; -		if ((now = get_timer(start)) > CFG_FLASH_ERASE_TOUT) { +		if ((now = get_timer(start)) > CONFIG_SYS_FLASH_ERASE_TOUT) {  			printf ("Timeout\n");  			return ERR_TIMOUT;  		} @@ -581,7 +581,7 @@ unsigned long flash_init (void)  	mtdbat1u(0x70000000 | BATU_BL_256M | BATU_VS | BATU_VP);  	set_msr(msr); -	for (i = 0; i < CFG_MAX_FLASH_BANKS; i++) +	for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; i++)  		flash_info[i].flash_id = FLASH_UNKNOWN;  	size = cfi_init(FLASH_BASE0_PRELIM, &flash_info[0]);  	if (!size) |