diff options
| author | Graeme Russ <graeme.russ@gmail.com> | 2011-07-15 23:31:37 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2011-07-16 11:55:00 +0200 | 
| commit | a60d1e5b8e5007f53c198acc5ca636ae570ae180 (patch) | |
| tree | ce621710efc0ecace5a53c22e93f4c6dfcf03be2 /board/scb9328/flash.c | |
| parent | 4e0499ebb0ac53aca45735ed63a3230df3280fb8 (diff) | |
| download | olio-uboot-2014.01-a60d1e5b8e5007f53c198acc5ca636ae570ae180.tar.xz olio-uboot-2014.01-a60d1e5b8e5007f53c198acc5ca636ae570ae180.zip | |
Timer: Fix misuse of ARM *timer_masked() functions outside arch/arm
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'board/scb9328/flash.c')
| -rw-r--r-- | board/scb9328/flash.c | 5 | 
1 files changed, 3 insertions, 2 deletions
| diff --git a/board/scb9328/flash.c b/board/scb9328/flash.c index c6f94aebb..00c660a2b 100644 --- a/board/scb9328/flash.c +++ b/board/scb9328/flash.c @@ -97,11 +97,12 @@ static FLASH_BUS_RET flash_status_reg (void)  static int flash_ready (ulong timeout)  {  	int ok = 1; +	ulong start; -	reset_timer_masked (); +	start = get_timer(0);  	while ((flash_status_reg () & FLASH_CMD (CFI_INTEL_SR_READY)) !=  		   FLASH_CMD (CFI_INTEL_SR_READY)) { -		if (get_timer_masked () > timeout && timeout != 0) { +		if (get_timer(start) > timeout && timeout != 0) {  			ok = 0;  			break;  		} |