aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-12-04 14:56:36 -0800
committerGreg Kroah-Hartman <gregkh@suse.de>2006-12-13 15:38:45 -0800
commitc63e07834bb12910bea41da15b8902150f5217c2 (patch)
treec26d894b5039ed4ab138a27bd5c32e587ab5f785
parentDebugFS : file/directory removal fix (diff)
downloadlinux-dev-c63e07834bb12910bea41da15b8902150f5217c2.tar.xz
linux-dev-c63e07834bb12910bea41da15b8902150f5217c2.zip
Driver core: "platform_driver_probe() can save codespace": save codespace
This function can be __init Cc: David Brownell <dbrownell@users.sourceforge.net> Cc: Dmitry Torokhov <dtor@mail.ru> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r--drivers/base/platform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/platform.c b/drivers/base/platform.c
index d1df4a087924..0338289f9b5c 100644
--- a/drivers/base/platform.c
+++ b/drivers/base/platform.c
@@ -473,7 +473,7 @@ EXPORT_SYMBOL_GPL(platform_driver_unregister);
* Returns zero if the driver registered and bound to a device, else returns
* a negative error code and with the driver not registered.
*/
-int platform_driver_probe(struct platform_driver *drv,
+int __init_or_module platform_driver_probe(struct platform_driver *drv,
int (*probe)(struct platform_device *))
{
int retval, code;