diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2011-01-24 01:40:17 +0000 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2011-01-25 15:03:15 +0900 |
commit | 75a9fa0a769a373bda0b0f49101f066618b7effb (patch) | |
tree | b384f45f5a354323b8377603469ec177b757e25d | |
parent | 8a5a778665efb3a5f16ebb6fbc13356907e45775 (diff) | |
download | linux-3.10-75a9fa0a769a373bda0b0f49101f066618b7effb.tar.gz linux-3.10-75a9fa0a769a373bda0b0f49101f066618b7effb.tar.bz2 linux-3.10-75a9fa0a769a373bda0b0f49101f066618b7effb.zip |
sh: Fix build of sh7750 base boards
Renamed platform_register_device to platform_device_register.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/cpu/sh4/setup-sh7750.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/sh/kernel/cpu/sh4/setup-sh7750.c b/arch/sh/kernel/cpu/sh4/setup-sh7750.c index c2b0aaaedca..672944f5b19 100644 --- a/arch/sh/kernel/cpu/sh4/setup-sh7750.c +++ b/arch/sh/kernel/cpu/sh4/setup-sh7750.c @@ -230,10 +230,10 @@ static struct platform_device *sh7750_devices[] __initdata = { static int __init sh7750_devices_setup(void) { if (mach_is_rts7751r2d()) { - platform_register_device(&scif_device); + platform_device_register(&scif_device); } else { - platform_register_device(&sci_device); - platform_register_device(&scif_device); + platform_device_register(&sci_device); + platform_device_register(&scif_device); } return platform_add_devices(sh7750_devices, |