aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r--drivers/mtd/nand/mxc_nand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c
index 30eeb4c6552..53e94121c26 100644
--- a/drivers/mtd/nand/mxc_nand.c
+++ b/drivers/mtd/nand/mxc_nand.c
@@ -698,7 +698,7 @@ static int __init mxcnd_probe(struct platform_device *pdev)
698 mtd->priv = this; 698 mtd->priv = this;
699 mtd->owner = THIS_MODULE; 699 mtd->owner = THIS_MODULE;
700 mtd->dev.parent = &pdev->dev; 700 mtd->dev.parent = &pdev->dev;
701 mtd->name = "mxc_nand"; 701 mtd->name = DRIVER_NAME;
702 702
703 /* 50 us command delay time */ 703 /* 50 us command delay time */
704 this->chip_delay = 5; 704 this->chip_delay = 5;
@@ -762,7 +762,7 @@ static int __init mxcnd_probe(struct platform_device *pdev)
762 762
763 host->irq = platform_get_irq(pdev, 0); 763 host->irq = platform_get_irq(pdev, 0);
764 764
765 err = request_irq(host->irq, mxc_nfc_irq, 0, "mxc_nd", host); 765 err = request_irq(host->irq, mxc_nfc_irq, 0, DRIVER_NAME, host);
766 if (err) 766 if (err)
767 goto eirq; 767 goto eirq;
768 768