ar71xx: ar934x_nfc: fix READ{0,1} operation on large page devices
SVN-Revision: 33450
This commit is contained in:
parent
2165240c32
commit
338b698fb6
@ -613,15 +613,18 @@ ar934x_nfc_cmdfunc(struct mtd_info *mtd, unsigned int command, int column,
|
||||
|
||||
case NAND_CMD_READ0:
|
||||
case NAND_CMD_READ1:
|
||||
if (nfc->small_page)
|
||||
if (nfc->small_page) {
|
||||
ar934x_nfc_send_read(nfc, command, column, page_addr,
|
||||
mtd->writesize + mtd->oobsize,
|
||||
false);
|
||||
else
|
||||
ar934x_nfc_send_read(nfc, command, column, page_addr,
|
||||
mtd->writesize, false);
|
||||
} else {
|
||||
ar934x_nfc_send_read(nfc, command, 0, page_addr,
|
||||
mtd->writesize + mtd->oobsize,
|
||||
false);
|
||||
nfc->buf_index = column;
|
||||
nfc->rndout_page_addr = page_addr;
|
||||
nfc->rndout_read_cmd = command;
|
||||
}
|
||||
break;
|
||||
|
||||
case NAND_CMD_READOOB:
|
||||
|
Loading…
Reference in New Issue
Block a user