aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/parisc
diff options
context:
space:
mode:
authorHelge Deller <deller@gmx.de>2014-10-01 22:11:01 +0200
committerHelge Deller <deller@gmx.de>2014-10-01 22:12:50 +0200
commit3edfe0030bb7a82dab2a30a29ea6e1800e600c4b (patch)
tree044a9b57ebfafb0568ad319e97dcde85e5b647ff /drivers/parisc
parentMerge branch 'fixes' of git://ftp.arm.linux.org.uk/~rmk/linux-arm (diff)
downloadlinux-dev-3edfe0030bb7a82dab2a30a29ea6e1800e600c4b.tar.xz
linux-dev-3edfe0030bb7a82dab2a30a29ea6e1800e600c4b.zip
parisc: Fix serial console for machines with serial port on superio chip
Fix the serial console on machines where the serial port is located on the SuperIO chip. Signed-off-by: Helge Deller <deller@gmx.de> Cc: Peter Hurley <peter@hurleysoftware.com>
Diffstat (limited to 'drivers/parisc')
-rw-r--r--drivers/parisc/superio.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/parisc/superio.c b/drivers/parisc/superio.c
index a042d065a0c7..8be2096c8423 100644
--- a/drivers/parisc/superio.c
+++ b/drivers/parisc/superio.c
@@ -395,7 +395,8 @@ static void __init superio_serial_init(void)
serial_port.iotype = UPIO_PORT;
serial_port.type = PORT_16550A;
serial_port.uartclk = 115200*16;
- serial_port.fifosize = 16;
+ serial_port.flags = UPF_FIXED_PORT | UPF_FIXED_TYPE |
+ UPF_BOOT_AUTOCONF;
/* serial port #1 */
serial_port.iobase = sio_dev.sp1_base;