diff options
| author | Marek Vasut <[email protected]> | 2011-08-20 14:24:49 +0200 |
|---|---|---|
| committer | Albert ARIBAUD <[email protected]> | 2011-09-04 11:36:16 +0200 |
| commit | c4f4c760c9bdbad6c4f286edfff79e34d96ec5f6 (patch) | |
| tree | d73bceddf2fd39e126b5b5d738fe1079a564bc31 | |
| parent | cabe2878a8201441a8aa4c482acb568f9ca137f0 (diff) | |
PXA: Fix Lubbock, remove redundant parenthesis
Signed-off-by: Marek Vasut <[email protected]>
| -rw-r--r-- | board/lubbock/flash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/lubbock/flash.c b/board/lubbock/flash.c index 1ea2893fd04..e1e7807bc10 100644 --- a/board/lubbock/flash.c +++ b/board/lubbock/flash.c @@ -408,7 +408,7 @@ static int write_data (flash_info_t *info, ulong dest, FPW data) /* wait while polling the status register */ while (((status = *addr) & (FPW) 0x00800080) != (FPW) 0x00800080) { - if (get_timer(start)) > CONFIG_SYS_FLASH_WRITE_TOUT) { + if (get_timer(start) > CONFIG_SYS_FLASH_WRITE_TOUT) { *addr = (FPW) 0x00FF00FF; /* restore read mode */ return (1); } |
