diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2012-05-14 21:26:11 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-05-17 03:45:40 -0400 |
commit | 00d6025e58c6e3b229e28cab721c568af5b1ae05 (patch) | |
tree | 6ca591d9aa2e984f467fc6b91022e1752007e87c /arch/sh/kernel/cpu/sh4a | |
parent | fd37e75ed56e3f9ddde15c57a9cbde8256221404 (diff) |
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 <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/sh4a')
-rw-r--r-- | arch/sh/kernel/cpu/sh4a/setup-sh7343.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7343.c b/arch/sh/kernel/cpu/sh4a/setup-sh7343.c index 476f4747df9..5773643b8a5 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 = { | |||
56 | .scscr = SCSCR_RE | SCSCR_TE | SCSCR_CKE1, | 56 | .scscr = SCSCR_RE | SCSCR_TE | SCSCR_CKE1, |
57 | .scbrr_algo_id = SCBRR_ALGO_2, | 57 | .scbrr_algo_id = SCBRR_ALGO_2, |
58 | .type = PORT_SCIF, | 58 | .type = PORT_SCIF, |
59 | .irq = SCIx_IRQ_MUXED(evt2irq(0xC40)), | 59 | .irqs = SCIx_IRQ_MUXED(evt2irq(0xC40)), |
60 | }; | 60 | }; |
61 | 61 | ||
62 | static struct platform_device scif2_device = { | 62 | static struct platform_device scif2_device = { |