Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1374129
| From | Rafał Miłecki <zajec5@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 2/8] mtd: nand: gpio: set ECC algorithm explicitly |
| Date | 2016-04-08 12:30 +0200 |
| Message-ID | <rlBPQ-2jm-19@gated-at.bofh.it> (permalink) |
| References | <rlBPP-2jm-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
This is part of process deprecating NAND_ECC_SOFT_BCH (and switching to enum nand_ecc_algo). Signed-off-by: Rafał Miłecki <zajec5@gmail.com> --- drivers/mtd/nand/gpio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/mtd/nand/gpio.c b/drivers/mtd/nand/gpio.c index ded658f..6317f68 100644 --- a/drivers/mtd/nand/gpio.c +++ b/drivers/mtd/nand/gpio.c @@ -273,6 +273,7 @@ static int gpio_nand_probe(struct platform_device *pdev) nand_set_flash_node(chip, pdev->dev.of_node); chip->IO_ADDR_W = chip->IO_ADDR_R; chip->ecc.mode = NAND_ECC_SOFT; + chip->ecc.algo = NAND_ECC_HAMMING; chip->options = gpiomtd->plat.options; chip->chip_delay = gpiomtd->plat.chip_delay; chip->cmd_ctrl = gpio_nand_cmd_ctrl; -- 1.8.4.5
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH 2/8] mtd: nand: gpio: set ECC algorithm explicitly Rafał Miłecki <zajec5@gmail.com> - 2016-04-08 12:30 +0200
csiph-web