diff options
author | Magnus Damm <damm@igel.co.jp> | 2007-08-22 13:32:07 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-08-22 13:32:07 +0900 |
commit | b58d134c7f9566c32a60b7163fe75d5ec247446d (patch) | |
tree | 7806359abc99ab7ce2d9cb6c2406ff8de28ac253 | |
parent | da2f5f7bf4a39f9613fc04d7030cffb63e435e1d (diff) |
sh: missing symbol fix for sh4-202
This patch adds a plat_irq_setup() symbol for sh4-202. Without
this fix it is impossible to build a working kernel using the
microdev_defconfig.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/cpu/sh4/setup-sh4-202.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/sh4/setup-sh4-202.c b/arch/sh/kernel/cpu/sh4/setup-sh4-202.c index 6e4e96541358..dab193293f20 100644 --- a/arch/sh/kernel/cpu/sh4/setup-sh4-202.c +++ b/arch/sh/kernel/cpu/sh4/setup-sh4-202.c @@ -41,3 +41,8 @@ static int __init sh4202_devices_setup(void) ARRAY_SIZE(sh4202_devices)); } __initcall(sh4202_devices_setup); + +void __init plat_irq_setup(void) +{ + /* do nothing - all IRL interrupts are handled by the board code */ +} |