* [patch 5/8] mtd: register orion_nand using platform_driver_probe()
@ 2009-08-06 23:05 akpm
2009-08-10 7:14 ` Artem Bityutskiy
0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2009-08-06 23:05 UTC (permalink / raw)
To: dwmw2; +Cc: nico, joern, gregkh, saeed, linux-mtd, u.kleine-koenig, akpm,
buytenh
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1763 bytes --]
From: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
orion_nand_probe lives in .init.text, so using platform_driver_register to
register it is wrong because binding a device after the init memory is
discarded (e.g. via sysfs) results in an oops.
As requested by Nicolas Pitre platform_driver_probe is used instead of
moving the probe function to .devinit.text as proposed initially. This
saves some memory, but devices registered after the driver is probed are
not bound (probably there are none) and binding via sysfs isn't possible.
Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Lennert Buytenhek <buytenh@marvell.com>
Cc: Saeed Bishara <saeed@marvell.com>
Cc: Joern Engel <joern@logfs.org>
Acked-by: Nicolas Pitre <nico@marvell.com>
Cc: Greg Kroah-Hartman <gregkh@suse.de>
Cc: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---
drivers/mtd/nand/orion_nand.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff -puN drivers/mtd/nand/orion_nand.c~mtd-register-orion_nand-using-platform_driver_probe drivers/mtd/nand/orion_nand.c
--- a/drivers/mtd/nand/orion_nand.c~mtd-register-orion_nand-using-platform_driver_probe
+++ a/drivers/mtd/nand/orion_nand.c
@@ -171,7 +171,6 @@ static int __devexit orion_nand_remove(s
}
static struct platform_driver orion_nand_driver = {
- .probe = orion_nand_probe,
.remove = __devexit_p(orion_nand_remove),
.driver = {
.name = "orion_nand",
@@ -181,7 +180,7 @@ static struct platform_driver orion_nand
static int __init orion_nand_init(void)
{
- return platform_driver_register(&orion_nand_driver);
+ return platform_driver_probe(&orion_nand_driver, orion_nand_probe);
}
static void __exit orion_nand_exit(void)
_
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch 5/8] mtd: register orion_nand using platform_driver_probe()
2009-08-06 23:05 [patch 5/8] mtd: register orion_nand using platform_driver_probe() akpm
@ 2009-08-10 7:14 ` Artem Bityutskiy
0 siblings, 0 replies; 2+ messages in thread
From: Artem Bityutskiy @ 2009-08-10 7:14 UTC (permalink / raw)
To: akpm; +Cc: gregkh, joern, nico, saeed, linux-mtd, u.kleine-koenig, dwmw2,
buytenh
On Thu, 2009-08-06 at 16:05 -0700, akpm@linux-foundation.org wrote:
> From: Uwe Kleine-Knig <u.kleine-koenig@pengutronix.de>
>
> orion_nand_probe lives in .init.text, so using platform_driver_register to
> register it is wrong because binding a device after the init memory is
> discarded (e.g. via sysfs) results in an oops.
>
> As requested by Nicolas Pitre platform_driver_probe is used instead of
> moving the probe function to .devinit.text as proposed initially. This
> saves some memory, but devices registered after the driver is probed are
> not bound (probably there are none) and binding via sysfs isn't possible.
>
> Signed-off-by: Uwe Kleine-Knig <u.kleine-koenig@pengutronix.de>
> Cc: Lennert Buytenhek <buytenh@marvell.com>
> Cc: Saeed Bishara <saeed@marvell.com>
> Cc: Joern Engel <joern@logfs.org>
> Acked-by: Nicolas Pitre <nico@marvell.com>
> Cc: Greg Kroah-Hartman <gregkh@suse.de>
> Cc: David Woodhouse <dwmw2@infradead.org>
> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This one is in my l2-mtd-2.6.git.
--
Best Regards,
Artem Bityutskiy (Артём Битюцкий)
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-08-10 7:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-08-06 23:05 [patch 5/8] mtd: register orion_nand using platform_driver_probe() akpm
2009-08-10 7:14 ` Artem Bityutskiy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox