[mtd interface] nand write with ecc
int panic_nand_write(struct mtd_info * mtd, loff_t to, size_t len, size_t * retlen, const uint8_t * buf);
mtd
MTD device structure
to
offset to write to
len
number of bytes to write
retlen
pointer to variable to store the number of written bytes
buf
the data to write
NAND write with ECC. Used when performing writes in interrupt context, this may for example be called by mtdoops when writing an oops while in panic.
Thomas Gleixner <[email protected]>
Author.