From: Marek Vasut Date: Sat, 20 Aug 2011 12:24:49 +0000 (+0200) Subject: PXA: Fix Lubbock, remove redundant parenthesis X-Git-Tag: v2011.09-rc1~68^2~57 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=c4f4c760c9bdbad6c4f286edfff79e34d96ec5f6;p=u-boot PXA: Fix Lubbock, remove redundant parenthesis Signed-off-by: Marek Vasut --- diff --git a/board/lubbock/flash.c b/board/lubbock/flash.c index 1ea2893fd0..e1e7807bc1 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); }