aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/serial/8250.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@kernel.org>2008-07-16 16:53:31 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2008-07-20 20:12:35 -0400
commitd87a6d951c6c09d191d9c10903deb3cc353fcd2c (patch)
tree113f7938e9bbeb688e5381c11e619547dd025532 /drivers/serial/8250.c
parent59247ca2fdca9691a6a7df532a830e3a133d9962 (diff)
drivers/serial/: remove CVS keywords
This patch removes CVS keywords that weren't updated for a long time in comments, printk's and MODULE_DESCRIPTION's (no printk's or MODULE_DESCRIPTION's are completely removed). While doing this I also found and fixed a missing \n in a printk in m32r_sio.c Signed-off-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Alan Cox <alan@redhat.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/serial/8250.c')
-rw-r--r--drivers/serial/8250.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/serial/8250.c b/drivers/serial/8250.c
index be95e55b228b..ac4f20cbfe41 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.
@@ -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);
2995EXPORT_SYMBOL(serial8250_resume_port); 2993EXPORT_SYMBOL(serial8250_resume_port);
2996 2994
2997MODULE_LICENSE("GPL"); 2995MODULE_LICENSE("GPL");
2998MODULE_DESCRIPTION("Generic 8250/16x50 serial driver $Revision: 1.90 $"); 2996MODULE_DESCRIPTION("Generic 8250/16x50 serial driver");
2999 2997
3000module_param(share_irqs, uint, 0644); 2998module_param(share_irqs, uint, 0644);
3001MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices" 2999MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices"