diff options
author | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2011-01-07 03:02:15 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-01-11 12:47:45 +0900 |
commit | 95d210ce6b23ec8916f97ec0cc7eb4d5fa80e0b3 (patch) | |
tree | cff7518c0314539b142056ac5fc27741eb5c221b /arch/sh/boards/mach-r2d | |
parent | 144cd59687fd69e806411391e1ab044473bb5f72 (diff) | |
download | op-kernel-dev-95d210ce6b23ec8916f97ec0cc7eb4d5fa80e0b3.zip op-kernel-dev-95d210ce6b23ec8916f97ec0cc7eb4d5fa80e0b3.tar.gz |
sh: Use device_initcall() instead of __initcall()
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/mach-r2d')
-rw-r--r-- | arch/sh/boards/mach-r2d/setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/boards/mach-r2d/setup.c b/arch/sh/boards/mach-r2d/setup.c index b84df6a..4b98a52 100644 --- a/arch/sh/boards/mach-r2d/setup.c +++ b/arch/sh/boards/mach-r2d/setup.c @@ -258,7 +258,7 @@ static int __init rts7751r2d_devices_setup(void) return platform_add_devices(rts7751r2d_devices, ARRAY_SIZE(rts7751r2d_devices)); } -__initcall(rts7751r2d_devices_setup); +device_initcall(rts7751r2d_devices_setup); static void rts7751r2d_power_off(void) { |