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__
parent
3432049276
commit
7b94f4c99d
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue