mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
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>
This commit is contained in:
parent
fd37e75ed5
commit
00d6025e58
1 changed files with 1 additions and 1 deletions
|
@ -56,7 +56,7 @@ static struct plat_sci_port scif2_platform_data = {
|
||||||
.scscr = SCSCR_RE | SCSCR_TE | SCSCR_CKE1,
|
.scscr = SCSCR_RE | SCSCR_TE | SCSCR_CKE1,
|
||||||
.scbrr_algo_id = SCBRR_ALGO_2,
|
.scbrr_algo_id = SCBRR_ALGO_2,
|
||||||
.type = PORT_SCIF,
|
.type = PORT_SCIF,
|
||||||
.irq = SCIx_IRQ_MUXED(evt2irq(0xC40)),
|
.irqs = SCIx_IRQ_MUXED(evt2irq(0xC40)),
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device scif2_device = {
|
static struct platform_device scif2_device = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue