Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 894572a3 authored by David Woodhouse's avatar David Woodhouse
Browse files

mtd: sh_flctl: register sh_flctl using platform_driver_probe()



As with orion_nand in commit f33dabbe
("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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarDavid Woodhouse <David.Woodhouse@intel.com>
parent c0cbfd0e
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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)