mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
[MTD] [NOR] STAA: use writesize instead off eccsize to represent ECC block
The cfi_staa_write_buffers() uses mtd->eccsize but means mtd->writesize. BTW, mtd-eccsize is broken and is not initialized, which means the code fixed by this patch is broken/unused anyway. Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <dwmw2@infradead.org>
This commit is contained in:
parent
480b9dfb1f
commit
992c9d24c4
@ -662,7 +662,7 @@ static int cfi_staa_write_buffers (struct mtd_info *mtd, loff_t to,
|
||||
* a small buffer for this.
|
||||
* XXX: If the buffer size is not a multiple of 2, this will break
|
||||
*/
|
||||
#define ECCBUF_SIZE (mtd->eccsize)
|
||||
#define ECCBUF_SIZE (mtd->writesize)
|
||||
#define ECCBUF_DIV(x) ((x) & ~(ECCBUF_SIZE - 1))
|
||||
#define ECCBUF_MOD(x) ((x) & (ECCBUF_SIZE - 1))
|
||||
static int
|
||||
|
Loading…
Reference in New Issue
Block a user