diff options
author | Paul Mundt <lethal@linux-sh.org> | 2007-06-03 22:07:23 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-06-03 22:07:23 -0400 |
commit | 9a412847fbe396563acf2a78d5830c9c6c5a5d43 (patch) | |
tree | de4a991afde03e91c2aadffb2c8dfffe29aaff71 | |
parent | 0fd14754141e3604529579232d34fcffd89c24b9 (diff) |
sh: Fix se73180 platform device registration.
Copy and paste error from se7343, fix it up.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/boards/se/73180/setup.c | 4 | ||||
-rw-r--r-- | include/asm-sh/se73180.h | 11 |
2 files changed, 8 insertions, 7 deletions
diff --git a/arch/sh/boards/se/73180/setup.c b/arch/sh/boards/se/73180/setup.c index 911ce1cdbd7f..e143017c8975 100644 --- a/arch/sh/boards/se/73180/setup.c +++ b/arch/sh/boards/se/73180/setup.c | |||
@@ -38,8 +38,8 @@ static struct platform_device *se73180_devices[] __initdata = { | |||
38 | 38 | ||
39 | static int __init se73180_devices_setup(void) | 39 | static int __init se73180_devices_setup(void) |
40 | { | 40 | { |
41 | return platform_add_devices(sh7343se_platform_devices, | 41 | return platform_add_devices(se73180_devices, |
42 | ARRAY_SIZE(sh7343se_platform_devices)); | 42 | ARRAY_SIZE(se73180_devices)); |
43 | } | 43 | } |
44 | __initcall(se73180_devices_setup); | 44 | __initcall(se73180_devices_setup); |
45 | 45 | ||
diff --git a/include/asm-sh/se73180.h b/include/asm-sh/se73180.h index 3a4acb3e38a1..907c062b4c9a 100644 --- a/include/asm-sh/se73180.h +++ b/include/asm-sh/se73180.h | |||
@@ -1,9 +1,7 @@ | |||
1 | #ifndef __ASM_SH_HITACHI_SE73180_H | 1 | #ifndef __ASM_SH_SE73180_H |
2 | #define __ASM_SH_HITACHI_SE73180_H | 2 | #define __ASM_SH_SE73180_H |
3 | 3 | ||
4 | /* | 4 | /* |
5 | * include/asm-sh/se/se73180.h | ||
6 | * | ||
7 | * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp> | 5 | * Copyright (C) 2003 Takashi Kusuda <kusuda-takashi@hitachi-ul.co.jp> |
8 | * | 6 | * |
9 | * SH-Mobile SolutionEngine 73180 support | 7 | * SH-Mobile SolutionEngine 73180 support |
@@ -62,4 +60,7 @@ | |||
62 | #define __IO_PREFIX sh73180se | 60 | #define __IO_PREFIX sh73180se |
63 | #include <asm/io_generic.h> | 61 | #include <asm/io_generic.h> |
64 | 62 | ||
65 | #endif /* __ASM_SH_HITACHI_SE73180_H */ | 63 | /* arch/sh/boards/se/73180/irq.c */ |
64 | int shmse_irq_demux(int irq); | ||
65 | |||
66 | #endif /* __ASM_SH_SE73180_H */ | ||