Home
last modified time | relevance | path

Searched refs:cpylen (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/mtd/devices/
H A Dblock2mtd.c112 int cpylen; in block2mtd_read() local
116 cpylen = PAGE_SIZE - offset; // multiple pages in block2mtd_read()
118 cpylen = len; // this page in block2mtd_read()
119 len = len - cpylen; in block2mtd_read()
125 memcpy(buf, page_address(page) + offset, cpylen); in block2mtd_read()
129 *retlen += cpylen; in block2mtd_read()
130 buf += cpylen; in block2mtd_read()
146 int cpylen; in _block2mtd_write() local
150 cpylen = PAGE_SIZE - offset; // multiple pages in _block2mtd_write()
152 cpylen = len; // this page in _block2mtd_write()
[all …]