forked from len0rd/rockbox
Improve readability by adding parenthesis
Change-Id: Iff51ab441a59f1ba842132b809a49d1fe7232e05
This commit is contained in:
parent
cfbd9cb22f
commit
85c98bc63c
1 changed files with 1 additions and 1 deletions
|
@ -1001,7 +1001,7 @@ static uint32_t ftl_vfl_write(uint32_t vpage, uint32_t count,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
for (i = count < ftl_banks ? count : ftl_banks; i > 0; i--)
|
for (i = (count < ftl_banks ? count : ftl_banks); i > 0; i--)
|
||||||
if (nand_write_page_collect(bank[i - 1]))
|
if (nand_write_page_collect(bank[i - 1]))
|
||||||
if (nand_read_page(bank[i - 1], physpage[i - 1],
|
if (nand_read_page(bank[i - 1], physpage[i - 1],
|
||||||
ftl_buffer, &ftl_sparebuffer[0], 1, 1) & 0x11F)
|
ftl_buffer, &ftl_sparebuffer[0], 1, 1) & 0x11F)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue