diff options
Diffstat (limited to 'drivers/serial/8250.c')
-rw-r--r-- | drivers/serial/8250.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c index be95e55b228b..ce948b66bbd4 100644 --- a/drivers/serial/8250.c +++ b/drivers/serial/8250.c | |||
@@ -12,8 +12,6 @@ | |||
12 | * the Free Software Foundation; either version 2 of the License, or | 12 | * the Free Software Foundation; either version 2 of the License, or |
13 | * (at your option) any later version. | 13 | * (at your option) any later version. |
14 | * | 14 | * |
15 | * $Id: 8250.c,v 1.90 2002/07/28 10:03:27 rmk Exp $ | ||
16 | * | ||
17 | * A note about mapbase / membase | 15 | * A note about mapbase / membase |
18 | * | 16 | * |
19 | * mapbase is the physical address of the IO port. | 17 | * mapbase is the physical address of the IO port. |
@@ -1289,7 +1287,7 @@ static void serial8250_enable_ms(struct uart_port *port) | |||
1289 | static void | 1287 | static void |
1290 | receive_chars(struct uart_8250_port *up, unsigned int *status) | 1288 | receive_chars(struct uart_8250_port *up, unsigned int *status) |
1291 | { | 1289 | { |
1292 | struct tty_struct *tty = up->port.info->tty; | 1290 | struct tty_struct *tty = up->port.info->port.tty; |
1293 | unsigned char ch, lsr = *status; | 1291 | unsigned char ch, lsr = *status; |
1294 | int max_count = 256; | 1292 | int max_count = 256; |
1295 | char flag; | 1293 | char flag; |
@@ -2934,7 +2932,7 @@ static int __init serial8250_init(void) | |||
2934 | if (nr_uarts > UART_NR) | 2932 | if (nr_uarts > UART_NR) |
2935 | nr_uarts = UART_NR; | 2933 | nr_uarts = UART_NR; |
2936 | 2934 | ||
2937 | printk(KERN_INFO "Serial: 8250/16550 driver $Revision: 1.90 $ " | 2935 | printk(KERN_INFO "Serial: 8250/16550 driver" |
2938 | "%d ports, IRQ sharing %sabled\n", nr_uarts, | 2936 | "%d ports, IRQ sharing %sabled\n", nr_uarts, |
2939 | share_irqs ? "en" : "dis"); | 2937 | share_irqs ? "en" : "dis"); |
2940 | 2938 | ||
@@ -2995,7 +2993,7 @@ EXPORT_SYMBOL(serial8250_suspend_port); | |||
2995 | EXPORT_SYMBOL(serial8250_resume_port); | 2993 | EXPORT_SYMBOL(serial8250_resume_port); |
2996 | 2994 | ||
2997 | MODULE_LICENSE("GPL"); | 2995 | MODULE_LICENSE("GPL"); |
2998 | MODULE_DESCRIPTION("Generic 8250/16x50 serial driver $Revision: 1.90 $"); | 2996 | MODULE_DESCRIPTION("Generic 8250/16x50 serial driver"); |
2999 | 2997 | ||
3000 | module_param(share_irqs, uint, 0644); | 2998 | module_param(share_irqs, uint, 0644); |
3001 | MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices" | 2999 | MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices" |