mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:46:16 +02:00
ar71xx: ar934x_nfc: optimize READOOB operation on large page devices
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33452 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
56caae5b72
commit
5c9038f12e
@ -628,18 +628,16 @@ ar934x_nfc_cmdfunc(struct mtd_info *mtd, unsigned int command, int column,
|
||||
break;
|
||||
|
||||
case NAND_CMD_READOOB:
|
||||
if (nfc->small_page) {
|
||||
if (nfc->small_page)
|
||||
ar934x_nfc_send_read(nfc, NAND_CMD_READOOB,
|
||||
column, page_addr,
|
||||
mtd->oobsize,
|
||||
true);
|
||||
} else {
|
||||
else
|
||||
ar934x_nfc_send_read(nfc, NAND_CMD_READ0,
|
||||
column, page_addr,
|
||||
mtd->writesize + mtd->oobsize,
|
||||
mtd->writesize, page_addr,
|
||||
mtd->oobsize,
|
||||
true);
|
||||
nfc->buf_index = mtd->writesize;
|
||||
}
|
||||
break;
|
||||
|
||||
case NAND_CMD_RNDOUT:
|
||||
|
Loading…
Reference in New Issue
Block a user