mtd: sh_flctl: register sh_flctl using platform_driver_probe()

Linux-MTD Mailing List linux-mtd at lists.infradead.org
Sat Sep 19 19:59:01 EDT 2009


Gitweb:     http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=894572a363539dc2e8ddde83056bd22fadb30748
Commit:     894572a363539dc2e8ddde83056bd22fadb30748
Parent:     c0cbfd0e81d879a950ba6f0df3f75ea30c5ab16e
Author:     David Woodhouse <David.Woodhouse at intel.com>
AuthorDate: Sat Sep 19 16:07:34 2009 -0700
Committer:  David Woodhouse <David.Woodhouse at intel.com>
CommitDate: Sat Sep 19 16:07:34 2009 -0700

    mtd: sh_flctl: register sh_flctl using platform_driver_probe()
    
    As with orion_nand in commit f33dabbe79fdf7a8568c65faa1db7794c87ac4d3
    ("register orion_nand using platform_driver_probe()"), avoid .init.text
    problems by using platform_device_probe(). This isn't going to be
    hotplugged anyway.
    
    Reported-by: Uwe Kleine-König <u.kleine-koenig at pengutronix.de>
    Signed-off-by: David Woodhouse <David.Woodhouse at intel.com>
---
 drivers/mtd/nand/sh_flctl.c |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/drivers/mtd/nand/sh_flctl.c b/drivers/mtd/nand/sh_flctl.c
index c5df285..02bef21 100644
--- a/drivers/mtd/nand/sh_flctl.c
+++ b/drivers/mtd/nand/sh_flctl.c
@@ -857,7 +857,6 @@ static int __exit flctl_remove(struct platform_device *pdev)
 }
 
 static struct platform_driver flctl_driver = {
-	.probe		= flctl_probe,
 	.remove		= flctl_remove,
 	.driver = {
 		.name	= "sh_flctl",
@@ -867,7 +866,7 @@ static struct platform_driver flctl_driver = {
 
 static int __init flctl_nand_init(void)
 {
-	return platform_driver_register(&flctl_driver);
+	return platform_driver_probe(&flctl_driver, flctl_probe);
 }
 
 static void __exit flctl_nand_cleanup(void)



More information about the linux-mtd-cvs mailing list