diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-04-19 00:14:29 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-04-19 00:14:29 -0400 |
commit | 8fb2bae4b41eb64f6e233e9bd3f3a789fbb04a06 (patch) | |
tree | 09d0646220f521155ec949e0e304fb3365b52714 | |
parent | d9aed8b95f062b2f96e37b0e07373f36a6e7066d (diff) |
sh: sh7724: Register CMT as an early platform device here too.
Follows the SH7722/SH7723 changes.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/cpu/sh4a/setup-sh7724.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7724.c b/arch/sh/kernel/cpu/sh4a/setup-sh7724.c index 195274a74f8d..8429396acb59 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7724.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7724.c | |||
@@ -288,6 +288,16 @@ static int __init sh7724_devices_setup(void) | |||
288 | } | 288 | } |
289 | device_initcall(sh7724_devices_setup); | 289 | device_initcall(sh7724_devices_setup); |
290 | 290 | ||
291 | static struct platform_device *sh7724_early_devices[] __initdata = { | ||
292 | &cmt_device, | ||
293 | }; | ||
294 | |||
295 | void __init plat_early_device_setup(void) | ||
296 | { | ||
297 | early_platform_add_devices(sh7724_early_devices, | ||
298 | ARRAY_SIZE(sh7724_early_devices)); | ||
299 | } | ||
300 | |||
291 | enum { | 301 | enum { |
292 | UNUSED = 0, | 302 | UNUSED = 0, |
293 | 303 | ||