projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c110eaf
)
mxc_nand: use DRIVER_NAME where appropriate
author
Sascha Hauer
<s.hauer@pengutronix.de>
Wed, 21 Oct 2009 14:06:27 +0000
(16:06 +0200)
committer
Sascha Hauer
<s.hauer@pengutronix.de>
Thu, 12 Nov 2009 07:33:45 +0000
(08:33 +0100)
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
drivers/mtd/nand/mxc_nand.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/mtd/nand/mxc_nand.c
b/drivers/mtd/nand/mxc_nand.c
index 30eeb4c655284dae61f5a9dd6cf64434e2f0e41b..53e94121c26ff74f4a6bfcf372383a6263e63e9d 100644
(file)
--- 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)
mtd->priv = this;
mtd->owner = THIS_MODULE;
mtd->dev.parent = &pdev->dev;
- mtd->name =
"mxc_nand"
;
+ mtd->name =
DRIVER_NAME
;
/* 50 us command delay time */
this->chip_delay = 5;
@@
-762,7
+762,7
@@
static int __init mxcnd_probe(struct platform_device *pdev)
host->irq = platform_get_irq(pdev, 0);
- err = request_irq(host->irq, mxc_nfc_irq, 0,
"mxc_nd"
, host);
+ err = request_irq(host->irq, mxc_nfc_irq, 0,
DRIVER_NAME
, host);
if (err)
goto eirq;