diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-04-01 08:54:27 -0400 |
---|---|---|
committer | Boris Brezillon <boris.brezillon@free-electrons.com> | 2016-05-05 17:51:58 -0400 |
commit | 2d01922c11601bed642e5a3d1c7051685218d0fc (patch) | |
tree | 5e9783099855b8d92999e7af53272e0e59ae49ee | |
parent | 363b5db21284b3f44866eaee5d2d34c3c9963f7d (diff) |
mtd: nand: hisi504: rely on generic DT parsing done in nand_scan_ident()
The core now takes care of parsing generic DT properties in
nand_scan_ident() when nand_set_flash_node() has been called.
Rely on this initialization instead of calling of_get_nand_xxx()
manually.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
-rw-r--r-- | drivers/mtd/nand/hisi504_nand.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/drivers/mtd/nand/hisi504_nand.c b/drivers/mtd/nand/hisi504_nand.c index 7bf844c55085..9432546f4cd4 100644 --- a/drivers/mtd/nand/hisi504_nand.c +++ b/drivers/mtd/nand/hisi504_nand.c | |||
@@ -19,7 +19,6 @@ | |||
19 | * GNU General Public License for more details. | 19 | * GNU General Public License for more details. |
20 | */ | 20 | */ |
21 | #include <linux/of.h> | 21 | #include <linux/of.h> |
22 | #include <linux/of_mtd.h> | ||
23 | #include <linux/mtd/mtd.h> | 22 | #include <linux/mtd/mtd.h> |
24 | #include <linux/sizes.h> | 23 | #include <linux/sizes.h> |
25 | #include <linux/clk.h> | 24 | #include <linux/clk.h> |
@@ -662,10 +661,9 @@ static int hisi_nfc_ecc_probe(struct hinfc_host *host) | |||
662 | struct device *dev = host->dev; | 661 | struct device *dev = host->dev; |
663 | struct nand_chip *chip = &host->chip; | 662 | struct nand_chip *chip = &host->chip; |
664 | struct mtd_info *mtd = nand_to_mtd(chip); | 663 | struct mtd_info *mtd = nand_to_mtd(chip); |
665 | struct device_node *np = host->dev->of_node; | ||
666 | 664 | ||
667 | size = of_get_nand_ecc_step_size(np); | 665 | size = chip->ecc.size; |
668 | strength = of_get_nand_ecc_strength(np); | 666 | strength = chip->ecc.strength; |
669 | if (size != 1024) { | 667 | if (size != 1024) { |
670 | dev_err(dev, "error ecc size: %d\n", size); | 668 | dev_err(dev, "error ecc size: %d\n", size); |
671 | return -EINVAL; | 669 | return -EINVAL; |
@@ -715,7 +713,7 @@ static int hisi_nfc_ecc_probe(struct hinfc_host *host) | |||
715 | 713 | ||
716 | static int hisi_nfc_probe(struct platform_device *pdev) | 714 | static int hisi_nfc_probe(struct platform_device *pdev) |
717 | { | 715 | { |
718 | int ret = 0, irq, buswidth, flag, max_chips = HINFC504_MAX_CHIP; | 716 | int ret = 0, irq, flag, max_chips = HINFC504_MAX_CHIP; |
719 | struct device *dev = &pdev->dev; | 717 | struct device *dev = &pdev->dev; |
720 | struct hinfc_host *host; | 718 | struct hinfc_host *host; |
721 | struct nand_chip *chip; | 719 | struct nand_chip *chip; |
@@ -767,12 +765,6 @@ static int hisi_nfc_probe(struct platform_device *pdev) | |||
767 | chip->read_buf = hisi_nfc_read_buf; | 765 | chip->read_buf = hisi_nfc_read_buf; |
768 | chip->chip_delay = HINFC504_CHIP_DELAY; | 766 | chip->chip_delay = HINFC504_CHIP_DELAY; |
769 | 767 | ||
770 | chip->ecc.mode = of_get_nand_ecc_mode(np); | ||
771 | |||
772 | buswidth = of_get_nand_bus_width(np); | ||
773 | if (buswidth == 16) | ||
774 | chip->options |= NAND_BUSWIDTH_16; | ||
775 | |||
776 | hisi_nfc_host_init(host); | 768 | hisi_nfc_host_init(host); |
777 | 769 | ||
778 | ret = devm_request_irq(dev, irq, hinfc_irq_handle, 0x0, "nandc", host); | 770 | ret = devm_request_irq(dev, irq, hinfc_irq_handle, 0x0, "nandc", host); |