NAND/CORE: fix clang warning

The fix is inline with the Linux coding style that forbids
assignment in if condition

Change-Id: I42a371d6adfdf3b3fb867705211c47d89776ee2a
Signed-off-by: Antonio Borneo <borneo.antonio@gmail.com>
Reviewed-on: http://openocd.zylin.com/85
Tested-by: jenkins
Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
__archive__
Antonio Borneo 2011-10-23 12:02:57 +08:00 committed by Øyvind Harboe
parent 3432049276
commit 7b94f4c99d
1 changed files with 2 additions and 1 deletions

View File

@ -598,7 +598,8 @@ int nand_erase(struct nand_device *nand, int first_block, int last_block)
return ERROR_NAND_OPERATION_TIMEOUT;
}
if ((retval = nand_read_status(nand, &status)) != ERROR_OK)
retval = nand_read_status(nand, &status);
if (retval != ERROR_OK)
{
LOG_ERROR("couldn't read status");
return ERROR_NAND_OPERATION_FAILED;