diff options
| -rw-r--r-- | drivers/serial/8250_gsc.c | 1 | ||||
| -rw-r--r-- | drivers/serial/mux.c | 7 |
2 files changed, 5 insertions, 3 deletions
diff --git a/drivers/serial/8250_gsc.c b/drivers/serial/8250_gsc.c index abc5a0cfe243..8b4947933d9b 100644 --- a/drivers/serial/8250_gsc.c +++ b/drivers/serial/8250_gsc.c | |||
| @@ -29,7 +29,6 @@ | |||
| 29 | static int __init | 29 | static int __init |
| 30 | serial_init_chip(struct parisc_device *dev) | 30 | serial_init_chip(struct parisc_device *dev) |
| 31 | { | 31 | { |
| 32 | static int serial_line_nr; | ||
| 33 | struct uart_port port; | 32 | struct uart_port port; |
| 34 | unsigned long address; | 33 | unsigned long address; |
| 35 | int err; | 34 | int err; |
diff --git a/drivers/serial/mux.c b/drivers/serial/mux.c index 009ce83c8ef5..660bae5ba179 100644 --- a/drivers/serial/mux.c +++ b/drivers/serial/mux.c | |||
| @@ -27,6 +27,7 @@ | |||
| 27 | #include <linux/delay.h> /* for udelay */ | 27 | #include <linux/delay.h> /* for udelay */ |
| 28 | #include <linux/device.h> | 28 | #include <linux/device.h> |
| 29 | #include <asm/io.h> | 29 | #include <asm/io.h> |
| 30 | #include <asm/irq.h> | ||
| 30 | #include <asm/parisc-device.h> | 31 | #include <asm/parisc-device.h> |
| 31 | 32 | ||
| 32 | #ifdef CONFIG_MAGIC_SYSRQ | 33 | #ifdef CONFIG_MAGIC_SYSRQ |
| @@ -469,16 +470,18 @@ static int __init mux_probe(struct parisc_device *dev) | |||
| 469 | for(i = 0; i < ports; ++i, ++port_cnt) { | 470 | for(i = 0; i < ports; ++i, ++port_cnt) { |
| 470 | port = &mux_ports[port_cnt]; | 471 | port = &mux_ports[port_cnt]; |
| 471 | port->iobase = 0; | 472 | port->iobase = 0; |
| 472 | port->mapbase = dev->hpa + MUX_OFFSET + (i * MUX_LINE_OFFSET); | 473 | port->mapbase = dev->hpa.start + MUX_OFFSET + |
| 474 | (i * MUX_LINE_OFFSET); | ||
| 473 | port->membase = ioremap(port->mapbase, MUX_LINE_OFFSET); | 475 | port->membase = ioremap(port->mapbase, MUX_LINE_OFFSET); |
| 474 | port->iotype = SERIAL_IO_MEM; | 476 | port->iotype = SERIAL_IO_MEM; |
| 475 | port->type = PORT_MUX; | 477 | port->type = PORT_MUX; |
| 476 | port->irq = SERIAL_IRQ_NONE; | 478 | port->irq = NO_IRQ; |
| 477 | port->uartclk = 0; | 479 | port->uartclk = 0; |
| 478 | port->fifosize = MUX_FIFO_SIZE; | 480 | port->fifosize = MUX_FIFO_SIZE; |
| 479 | port->ops = &mux_pops; | 481 | port->ops = &mux_pops; |
| 480 | port->flags = UPF_BOOT_AUTOCONF; | 482 | port->flags = UPF_BOOT_AUTOCONF; |
| 481 | port->line = port_cnt; | 483 | port->line = port_cnt; |
| 484 | spin_lock_init(&port->lock); | ||
| 482 | status = uart_add_one_port(&mux_driver, port); | 485 | status = uart_add_one_port(&mux_driver, port); |
| 483 | BUG_ON(status); | 486 | BUG_ON(status); |
| 484 | } | 487 | } |
