Skip to content

Commit

Permalink
sh: Fix mistake of the member variable of plat_sci_port for SH7343
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Nobuhiro Iwamatsu authored and Paul Mundt committed May 17, 2012
1 parent fd37e75 commit 00d6025
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/sh/kernel/cpu/sh4a/setup-sh7343.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit 00d6025

Please sign in to comment.