From: Magnus Damm Date: Wed, 22 Aug 2007 04:32:07 +0000 (+0900) Subject: sh: missing symbol fix for sh4-202 X-Git-Tag: firefly_0821_release~26662^2 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=b58d134c7f9566c32a60b7163fe75d5ec247446d;p=firefly-linux-kernel-4.4.55.git 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 Signed-off-by: Paul Mundt --- 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 */ +}