mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
common/cmd_nand.c: Fix GCC 4.6 warning
cmd_nand.c: In function 'raw_access': cmd_nand.c:397:9: warning: variable 'rwsize' set but not used [-Wunused-but-set-variable] Signed-off-by: Anatolij Gustschin <agust@denx.de> Cc: Scott Wood <scottwood@freescale.com>
This commit is contained in:
parent
5017436366
commit
10d4e0f9fe
@ -394,7 +394,6 @@ static int raw_access(nand_info_t *nand, ulong addr, loff_t off, ulong count,
|
|||||||
int read)
|
int read)
|
||||||
{
|
{
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
size_t rwsize;
|
|
||||||
|
|
||||||
while (count--) {
|
while (count--) {
|
||||||
/* Raw access */
|
/* Raw access */
|
||||||
@ -406,7 +405,6 @@ static int raw_access(nand_info_t *nand, ulong addr, loff_t off, ulong count,
|
|||||||
.mode = MTD_OOB_RAW
|
.mode = MTD_OOB_RAW
|
||||||
};
|
};
|
||||||
|
|
||||||
rwsize = nand->writesize + nand->oobsize;
|
|
||||||
if (read)
|
if (read)
|
||||||
ret = nand->read_oob(nand, off, &ops);
|
ret = nand->read_oob(nand, off, &ops);
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user