diff options
| author | David Woodhouse <David.Woodhouse@intel.com> | 2009-09-19 19:07:34 -0400 |
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2009-09-19 19:07:34 -0400 |
| commit | 894572a363539dc2e8ddde83056bd22fadb30748 (patch) | |
| tree | e6e828fa0d5304d12e759976f8e0e0dde1567741 | |
| parent | c0cbfd0e81d879a950ba6f0df3f75ea30c5ab16e (diff) | |
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@pengutronix.de>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
| -rw-r--r-- | 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 c5df28596a4a..02bef21f2e4b 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) | |||
| 857 | } | 857 | } |
| 858 | 858 | ||
| 859 | static struct platform_driver flctl_driver = { | 859 | static struct platform_driver flctl_driver = { |
| 860 | .probe = flctl_probe, | ||
| 861 | .remove = flctl_remove, | 860 | .remove = flctl_remove, |
| 862 | .driver = { | 861 | .driver = { |
| 863 | .name = "sh_flctl", | 862 | .name = "sh_flctl", |
| @@ -867,7 +866,7 @@ static struct platform_driver flctl_driver = { | |||
| 867 | 866 | ||
| 868 | static int __init flctl_nand_init(void) | 867 | static int __init flctl_nand_init(void) |
| 869 | { | 868 | { |
| 870 | return platform_driver_register(&flctl_driver); | 869 | return platform_driver_probe(&flctl_driver, flctl_probe); |
| 871 | } | 870 | } |
| 872 | 871 | ||
| 873 | static void __exit flctl_nand_cleanup(void) | 872 | static void __exit flctl_nand_cleanup(void) |
