diff options
| author | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
|---|---|---|
| committer | Markus Klotzbuecher <mk@denx.de> | 2008-10-21 09:18:01 +0200 | 
| commit | 50bd0057ba8fceeb48533f8b1a652ccd0e170838 (patch) | |
| tree | ea1a183343573c2a48248923b96d316c0956727c /board/scb9328/flash.c | |
| parent | 9dbc366744960013965fce8851035b6141f3b3ae (diff) | |
| parent | f82642e33899766892499b163e60560fbbf87773 (diff) | |
| download | olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.tar.xz olio-uboot-2014.01-50bd0057ba8fceeb48533f8b1a652ccd0e170838.zip | |
Merge git://git.denx.de/u-boot into x1
Conflicts:
	drivers/usb/usb_ohci.c
Diffstat (limited to 'board/scb9328/flash.c')
| -rw-r--r-- | board/scb9328/flash.c | 18 | 
1 files changed, 9 insertions, 9 deletions
| diff --git a/board/scb9328/flash.c b/board/scb9328/flash.c index 536725af2..c6f94aebb 100644 --- a/board/scb9328/flash.c +++ b/board/scb9328/flash.c @@ -82,7 +82,7 @@  #endif -flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; +flash_info_t flash_info[CONFIG_SYS_MAX_FLASH_BANKS];  static FLASH_BUS_RET flash_status_reg (void)  { @@ -109,7 +109,7 @@ static int flash_ready (ulong timeout)  	return ok;  } -#if ( CFG_MAX_FLASH_BANKS != 1 ) +#if ( CONFIG_SYS_MAX_FLASH_BANKS != 1 )  #  error "SCB9328 platform has only one flash bank!"  #endif @@ -120,11 +120,11 @@ ulong flash_init (void)  	unsigned long address = SCB9328_FLASH_BASE;  	flash_info[0].size = SCB9328_FLASH_BANK_SIZE; -	flash_info[0].sector_count = CFG_MAX_FLASH_SECT; +	flash_info[0].sector_count = CONFIG_SYS_MAX_FLASH_SECT;  	flash_info[0].flash_id = INTEL_MANUFACT; -	memset (flash_info[0].protect, 0, CFG_MAX_FLASH_SECT); +	memset (flash_info[0].protect, 0, CONFIG_SYS_MAX_FLASH_SECT); -	for (i = 0; i < CFG_MAX_FLASH_SECT; i++) { +	for (i = 0; i < CONFIG_SYS_MAX_FLASH_SECT; i++) {  		flash_info[0].start[i] = address;  #ifdef SCB9328_FLASH_UNLOCK  		/* Some devices are hw locked after start. */ @@ -137,8 +137,8 @@ ulong flash_init (void)  	}  	flash_protect (FLAG_PROTECT_SET, -				   CFG_FLASH_BASE, -				   CFG_FLASH_BASE + monitor_flash_len - 1, +				   CONFIG_SYS_FLASH_BASE, +				   CONFIG_SYS_FLASH_BASE + monitor_flash_len - 1,  				   &flash_info[0]);  	flash_protect (FLAG_PROTECT_SET, @@ -209,7 +209,7 @@ int flash_erase (flash_info_t * info, int s_first, int s_last)  		*address = FLASH_CMD (CFI_INTEL_CMD_BLOCK_ERASE);  		*address = FLASH_CMD (CFI_INTEL_CMD_CONFIRM); -		if (flash_ready (CFG_FLASH_ERASE_TOUT)) { +		if (flash_ready (CONFIG_SYS_FLASH_ERASE_TOUT)) {  			*address = FLASH_CMD (CFI_INTEL_CMD_CLEAR_STATUS_REGISTER);  			printf ("ok.\n");  		} else { @@ -257,7 +257,7 @@ static int write_data (flash_info_t * info, ulong dest, FLASH_BUS data)  	*address = FLASH_CMD (CFI_INTEL_CMD_PROGRAM1);  	*address = data; -	if (!flash_ready (CFG_FLASH_WRITE_TOUT)) { +	if (!flash_ready (CONFIG_SYS_FLASH_WRITE_TOUT)) {  		*address = FLASH_CMD (CFI_INTEL_CMD_SUSPEND);  		rc = ERR_TIMOUT;  		printf ("timeout! Aborting...\n"); |