aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoris BREZILLON <boris.brezillon@free-electrons.com>2015-12-10 03:00:08 -0500
committerBrian Norris <computersforpeace@gmail.com>2015-12-18 13:54:41 -0500
commitfa100163d38ef8607652681fbe6f75491032610e (patch)
tree6d9cbeee03666914a06c32f69da95fc727fc6c62
parent2a690b25f6c770e70cc00357846f39327531c464 (diff)
mtd: nand: hisi504: use the mtd instance embedded in struct nand_chip
struct nand_chip now embeds an mtd device. Make use of this mtd instance. Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
-rw-r--r--drivers/mtd/nand/hisi504_nand.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/drivers/mtd/nand/hisi504_nand.c b/drivers/mtd/nand/hisi504_nand.c
index 6358d4ae7b75..6e6e482c02a3 100644
--- a/drivers/mtd/nand/hisi504_nand.c
+++ b/drivers/mtd/nand/hisi504_nand.c
@@ -134,7 +134,6 @@
134 134
135struct hinfc_host { 135struct hinfc_host {
136 struct nand_chip chip; 136 struct nand_chip chip;
137 struct mtd_info mtd;
138 struct device *dev; 137 struct device *dev;
139 void __iomem *iobase; 138 void __iomem *iobase;
140 void __iomem *mmio; 139 void __iomem *mmio;
@@ -189,8 +188,8 @@ static void wait_controller_finished(struct hinfc_host *host)
189 188
190static void hisi_nfc_dma_transfer(struct hinfc_host *host, int todev) 189static void hisi_nfc_dma_transfer(struct hinfc_host *host, int todev)
191{ 190{
192 struct mtd_info *mtd = &host->mtd; 191 struct nand_chip *chip = &host->chip;
193 struct nand_chip *chip = mtd_to_nand(mtd); 192 struct mtd_info *mtd = nand_to_mtd(chip);
194 unsigned long val; 193 unsigned long val;
195 int ret; 194 int ret;
196 195
@@ -262,7 +261,7 @@ static int hisi_nfc_send_cmd_pageprog(struct hinfc_host *host)
262 261
263static int hisi_nfc_send_cmd_readstart(struct hinfc_host *host) 262static int hisi_nfc_send_cmd_readstart(struct hinfc_host *host)
264{ 263{
265 struct mtd_info *mtd = &host->mtd; 264 struct mtd_info *mtd = nand_to_mtd(&host->chip);
266 265
267 if ((host->addr_value[0] == host->cache_addr_value[0]) && 266 if ((host->addr_value[0] == host->cache_addr_value[0]) &&
268 (host->addr_value[1] == host->cache_addr_value[1])) 267 (host->addr_value[1] == host->cache_addr_value[1]))
@@ -643,7 +642,7 @@ static int hisi_nfc_ecc_probe(struct hinfc_host *host)
643 int size, strength, ecc_bits; 642 int size, strength, ecc_bits;
644 struct device *dev = host->dev; 643 struct device *dev = host->dev;
645 struct nand_chip *chip = &host->chip; 644 struct nand_chip *chip = &host->chip;
646 struct mtd_info *mtd = &host->mtd; 645 struct mtd_info *mtd = nand_to_mtd(chip);
647 struct device_node *np = host->dev->of_node; 646 struct device_node *np = host->dev->of_node;
648 647
649 size = of_get_nand_ecc_step_size(np); 648 size = of_get_nand_ecc_step_size(np);
@@ -712,7 +711,7 @@ static int hisi_nfc_probe(struct platform_device *pdev)
712 711
713 platform_set_drvdata(pdev, host); 712 platform_set_drvdata(pdev, host);
714 chip = &host->chip; 713 chip = &host->chip;
715 mtd = &host->mtd; 714 mtd = nand_to_mtd(chip);
716 715
717 irq = platform_get_irq(pdev, 0); 716 irq = platform_get_irq(pdev, 0);
718 if (irq < 0) { 717 if (irq < 0) {
@@ -822,7 +821,7 @@ err_res:
822static int hisi_nfc_remove(struct platform_device *pdev) 821static int hisi_nfc_remove(struct platform_device *pdev)
823{ 822{
824 struct hinfc_host *host = platform_get_drvdata(pdev); 823 struct hinfc_host *host = platform_get_drvdata(pdev);
825 struct mtd_info *mtd = &host->mtd; 824 struct mtd_info *mtd = nand_to_mtd(&host->chip);
826 825
827 nand_release(mtd); 826 nand_release(mtd);
828 827