From: Nobuhiro Iwamatsu Date: Tue, 15 May 2012 01:26:11 +0000 (+0900) Subject: sh: Fix mistake of the member variable of plat_sci_port for SH7343 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=00d6025e58c6e3b229e28cab721c568af5b1ae05;p=linux-beck.git sh: Fix mistake of the member variable of plat_sci_port for SH7343 The current code was going to initialize irq of plat_sci_port. Not irq, irqs is right. Signed-off-by: Nobuhiro Iwamatsu Signed-off-by: Paul Mundt --- diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7343.c b/arch/sh/kernel/cpu/sh4a/setup-sh7343.c index 476f4747df98..5773643b8a53 100644 --- a/arch/sh/kernel/cpu/sh4a/setup-sh7343.c +++ b/arch/sh/kernel/cpu/sh4a/setup-sh7343.c @@ -56,7 +56,7 @@ static struct plat_sci_port scif2_platform_data = { .scscr = SCSCR_RE | SCSCR_TE | SCSCR_CKE1, .scbrr_algo_id = SCBRR_ALGO_2, .type = PORT_SCIF, - .irq = SCIx_IRQ_MUXED(evt2irq(0xC40)), + .irqs = SCIx_IRQ_MUXED(evt2irq(0xC40)), }; static struct platform_device scif2_device = {