Skip to content

Commit 03c668a

Browse files
committed
Merge tag 'for-linus-20160311' of git://git.infradead.org/linux-mtd
Pull MTD fixes from Brian Norris: "Late MTD fix for v4.5: - A simple error code handling fix for the NAND ECC test; this was a regression in v4.5-rc1 - A MAINTAINERS update, which might as well go in ASAP" * tag 'for-linus-20160311' of git://git.infradead.org/linux-mtd: MAINTAINERS: add a maintainer for the NAND subsystem mtd: nand: tests: fix regression introduced in mtd_nandectest
2 parents 3ab0a0f + 9df4f91 commit 03c668a

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

MAINTAINERS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7399,6 +7399,17 @@ W: https://www.myricom.com/support/downloads/myri10ge.html
73997399
S: Supported
74007400
F: drivers/net/ethernet/myricom/myri10ge/
74017401

7402+
NAND FLASH SUBSYSTEM
7403+
M: Boris Brezillon <boris.brezillon@free-electrons.com>
7404+
R: Richard Weinberger <richard@nod.at>
7405+
L: linux-mtd@lists.infradead.org
7406+
W: http://www.linux-mtd.infradead.org/
7407+
Q: http://patchwork.ozlabs.org/project/linux-mtd/list/
7408+
T: git git://github.com/linux-nand/linux.git
7409+
S: Maintained
7410+
F: drivers/mtd/nand/
7411+
F: include/linux/mtd/nand*.h
7412+
74027413
NATSEMI ETHERNET DRIVER (DP8381x)
74037414
S: Orphan
74047415
F: drivers/net/ethernet/natsemi/natsemi.c

drivers/mtd/tests/mtd_nandecctest.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ static int double_bit_error_detect(void *error_data, void *error_ecc,
187187
__nand_calculate_ecc(error_data, size, calc_ecc);
188188
ret = __nand_correct_data(error_data, error_ecc, calc_ecc, size);
189189

190-
return (ret == -1) ? 0 : -EINVAL;
190+
return (ret == -EBADMSG) ? 0 : -EINVAL;
191191
}
192192

193193
static const struct nand_ecc_test nand_ecc_test[] = {

0 commit comments

Comments
 (0)