Commit 81b635ef authored by Ralf Baechle's avatar Ralf Baechle
Browse files

[MIPS] IP32: Fix address of 2nd serial interface.



Found by Giuseppe Sacco <giuseppe@eppesuigoccas.homedns.org>.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 46abf4b3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -42,7 +42,7 @@ static struct platform_device uart8250_device = {
static int __init uart8250_init(void)
{
	uart8250_data[0].membase = (void __iomem *) &mace->isa.serial1;
	uart8250_data[1].membase = (void __iomem *) &mace->isa.serial1;
	uart8250_data[1].membase = (void __iomem *) &mace->isa.serial2;

	return platform_device_register(&uart8250_device);
}