Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1374129 > unrolled thread

[PATCH 2/8] mtd: nand: gpio: set ECC algorithm explicitly

Started byRafał Miłecki <zajec5@gmail.com>
First post2016-04-08 12:30 +0200
Last post2016-04-08 12:30 +0200
Articles 1 — 1 participant

Back to article view | Back to linux.kernel

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  [PATCH 2/8] mtd: nand: gpio: set ECC algorithm explicitly Rafał Miłecki <zajec5@gmail.com> - 2016-04-08 12:30 +0200

#1374129 — [PATCH 2/8] mtd: nand: gpio: set ECC algorithm explicitly

FromRafał Miłecki <zajec5@gmail.com>
Date2016-04-08 12:30 +0200
Subject[PATCH 2/8] mtd: nand: gpio: set ECC algorithm explicitly
Message-ID<rlBPQ-2jm-19@gated-at.bofh.it>
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

[toc] | [standalone]


Back to top | Article view | linux.kernel


csiph-web