Commit d87a6d951c6c09d191d9c10903deb3cc353fcd2c
Committed by
Linus Torvalds
1 parent
59247ca2fd
Exists in
master
and in
7 other branches
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>
Showing 15 changed files with 16 additions and 40 deletions Side-by-side Diff
- drivers/serial/21285.c
- drivers/serial/8250.c
- drivers/serial/8250.h
- drivers/serial/8250_pci.c
- drivers/serial/8250_pnp.c
- drivers/serial/Kconfig
- drivers/serial/Makefile
- drivers/serial/amba-pl010.c
- drivers/serial/amba-pl011.c
- drivers/serial/clps711x.c
- drivers/serial/m32r_sio.c
- drivers/serial/mpsc.c
- drivers/serial/pnx8xxx_uart.c
- drivers/serial/sa1100.c
- drivers/serial/sunsu.c
drivers/serial/21285.c
... | ... | @@ -4,8 +4,6 @@ |
4 | 4 | * Driver for the serial port on the 21285 StrongArm-110 core logic chip. |
5 | 5 | * |
6 | 6 | * Based on drivers/char/serial.c |
7 | - * | |
8 | - * $Id: 21285.c,v 1.37 2002/07/28 10:03:27 rmk Exp $ | |
9 | 7 | */ |
10 | 8 | #include <linux/module.h> |
11 | 9 | #include <linux/tty.h> |
... | ... | @@ -494,7 +492,7 @@ |
494 | 492 | { |
495 | 493 | int ret; |
496 | 494 | |
497 | - printk(KERN_INFO "Serial: 21285 driver $Revision: 1.37 $\n"); | |
495 | + printk(KERN_INFO "Serial: 21285 driver\n"); | |
498 | 496 | |
499 | 497 | serial21285_setup_ports(); |
500 | 498 | |
... | ... | @@ -515,6 +513,6 @@ |
515 | 513 | module_exit(serial21285_exit); |
516 | 514 | |
517 | 515 | MODULE_LICENSE("GPL"); |
518 | -MODULE_DESCRIPTION("Intel Footbridge (21285) serial driver $Revision: 1.37 $"); | |
516 | +MODULE_DESCRIPTION("Intel Footbridge (21285) serial driver"); | |
519 | 517 | MODULE_ALIAS_CHARDEV(SERIAL_21285_MAJOR, SERIAL_21285_MINOR); |
drivers/serial/8250.c
... | ... | @@ -12,8 +12,6 @@ |
12 | 12 | * the Free Software Foundation; either version 2 of the License, or |
13 | 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 | 15 | * A note about mapbase / membase |
18 | 16 | * |
19 | 17 | * mapbase is the physical address of the IO port. |
... | ... | @@ -2934,7 +2932,7 @@ |
2934 | 2932 | if (nr_uarts > UART_NR) |
2935 | 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 | 2936 | "%d ports, IRQ sharing %sabled\n", nr_uarts, |
2939 | 2937 | share_irqs ? "en" : "dis"); |
2940 | 2938 | |
... | ... | @@ -2995,7 +2993,7 @@ |
2995 | 2993 | EXPORT_SYMBOL(serial8250_resume_port); |
2996 | 2994 | |
2997 | 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 | 2998 | module_param(share_irqs, uint, 0644); |
3001 | 2999 | MODULE_PARM_DESC(share_irqs, "Share IRQs with other non-8250/16x50 devices" |
drivers/serial/8250.h
... | ... | @@ -11,8 +11,6 @@ |
11 | 11 | * it under the terms of the GNU General Public License as published by |
12 | 12 | * the Free Software Foundation; either version 2 of the License, or |
13 | 13 | * (at your option) any later version. |
14 | - * | |
15 | - * $Id: 8250.h,v 1.8 2002/07/21 21:32:30 rmk Exp $ | |
16 | 14 | */ |
17 | 15 | |
18 | 16 | #include <linux/serial_8250.h> |
drivers/serial/8250_pci.c
... | ... | @@ -10,8 +10,6 @@ |
10 | 10 | * This program is free software; you can redistribute it and/or modify |
11 | 11 | * it under the terms of the GNU General Public License as published by |
12 | 12 | * the Free Software Foundation; either version 2 of the License. |
13 | - * | |
14 | - * $Id: 8250_pci.c,v 1.28 2002/11/02 11:14:18 rmk Exp $ | |
15 | 13 | */ |
16 | 14 | #include <linux/module.h> |
17 | 15 | #include <linux/init.h> |
drivers/serial/8250_pnp.c
... | ... | @@ -12,8 +12,6 @@ |
12 | 12 | * This program is free software; you can redistribute it and/or modify |
13 | 13 | * it under the terms of the GNU General Public License as published by |
14 | 14 | * the Free Software Foundation; either version 2 of the License. |
15 | - * | |
16 | - * $Id: 8250_pnp.c,v 1.10 2002/07/21 21:32:30 rmk Exp $ | |
17 | 15 | */ |
18 | 16 | #include <linux/module.h> |
19 | 17 | #include <linux/init.h> |
drivers/serial/Kconfig
drivers/serial/Makefile
drivers/serial/amba-pl010.c
... | ... | @@ -22,8 +22,6 @@ |
22 | 22 | * along with this program; if not, write to the Free Software |
23 | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
24 | 24 | * |
25 | - * $Id: amba.c,v 1.41 2002/07/28 10:03:27 rmk Exp $ | |
26 | - * | |
27 | 25 | * This is a generic driver for ARM AMBA-type serial ports. They |
28 | 26 | * have a lot of 16550-like features, but are not register compatible. |
29 | 27 | * Note that although they do have CTS, DCD and DSR inputs, they do |
... | ... | @@ -791,7 +789,7 @@ |
791 | 789 | { |
792 | 790 | int ret; |
793 | 791 | |
794 | - printk(KERN_INFO "Serial: AMBA driver $Revision: 1.41 $\n"); | |
792 | + printk(KERN_INFO "Serial: AMBA driver\n"); | |
795 | 793 | |
796 | 794 | ret = uart_register_driver(&amba_reg); |
797 | 795 | if (ret == 0) { |
... | ... | @@ -812,6 +810,6 @@ |
812 | 810 | module_exit(pl010_exit); |
813 | 811 | |
814 | 812 | MODULE_AUTHOR("ARM Ltd/Deep Blue Solutions Ltd"); |
815 | -MODULE_DESCRIPTION("ARM AMBA serial port driver $Revision: 1.41 $"); | |
813 | +MODULE_DESCRIPTION("ARM AMBA serial port driver"); | |
816 | 814 | MODULE_LICENSE("GPL"); |
drivers/serial/amba-pl011.c
... | ... | @@ -22,8 +22,6 @@ |
22 | 22 | * along with this program; if not, write to the Free Software |
23 | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
24 | 24 | * |
25 | - * $Id: amba.c,v 1.41 2002/07/28 10:03:27 rmk Exp $ | |
26 | - * | |
27 | 25 | * This is a generic driver for ARM AMBA-type serial ports. They |
28 | 26 | * have a lot of 16550-like features, but are not register compatible. |
29 | 27 | * Note that although they do have CTS, DCD and DSR inputs, they do |
drivers/serial/clps711x.c
... | ... | @@ -21,9 +21,6 @@ |
21 | 21 | * You should have received a copy of the GNU General Public License |
22 | 22 | * along with this program; if not, write to the Free Software |
23 | 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
24 | - * | |
25 | - * $Id: clps711x.c,v 1.42 2002/07/28 10:03:28 rmk Exp $ | |
26 | - * | |
27 | 24 | */ |
28 | 25 | |
29 | 26 | #if defined(CONFIG_SERIAL_CLPS711X_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) |
... | ... | @@ -551,7 +548,7 @@ |
551 | 548 | { |
552 | 549 | int ret, i; |
553 | 550 | |
554 | - printk(KERN_INFO "Serial: CLPS711x driver $Revision: 1.42 $\n"); | |
551 | + printk(KERN_INFO "Serial: CLPS711x driver\n"); | |
555 | 552 | |
556 | 553 | ret = uart_register_driver(&clps711x_reg); |
557 | 554 | if (ret) |
... | ... | @@ -577,7 +574,7 @@ |
577 | 574 | module_exit(clps711xuart_exit); |
578 | 575 | |
579 | 576 | MODULE_AUTHOR("Deep Blue Solutions Ltd"); |
580 | -MODULE_DESCRIPTION("CLPS-711x generic serial driver $Revision: 1.42 $"); | |
577 | +MODULE_DESCRIPTION("CLPS-711x generic serial driver"); | |
581 | 578 | MODULE_LICENSE("GPL"); |
582 | 579 | MODULE_ALIAS_CHARDEV(SERIAL_CLPS711X_MAJOR, SERIAL_CLPS711X_MINOR); |
drivers/serial/m32r_sio.c
... | ... | @@ -1160,7 +1160,7 @@ |
1160 | 1160 | { |
1161 | 1161 | int ret, i; |
1162 | 1162 | |
1163 | - printk(KERN_INFO "Serial: M32R SIO driver $Revision: 1.11 $ "); | |
1163 | + printk(KERN_INFO "Serial: M32R SIO driver\n"); | |
1164 | 1164 | |
1165 | 1165 | for (i = 0; i < NR_IRQS; i++) |
1166 | 1166 | spin_lock_init(&irq_lists[i].lock); |
... | ... | @@ -1189,5 +1189,5 @@ |
1189 | 1189 | EXPORT_SYMBOL(m32r_sio_resume_port); |
1190 | 1190 | |
1191 | 1191 | MODULE_LICENSE("GPL"); |
1192 | -MODULE_DESCRIPTION("Generic M32R SIO serial driver $Revision: 1.11 $"); | |
1192 | +MODULE_DESCRIPTION("Generic M32R SIO serial driver"); |
drivers/serial/mpsc.c
... | ... | @@ -1972,7 +1972,7 @@ |
1972 | 1972 | { |
1973 | 1973 | int rc; |
1974 | 1974 | |
1975 | - printk(KERN_INFO "Serial: MPSC driver $Revision: 1.00 $\n"); | |
1975 | + printk(KERN_INFO "Serial: MPSC driver\n"); | |
1976 | 1976 | |
1977 | 1977 | memset(mpsc_ports, 0, sizeof(mpsc_ports)); |
1978 | 1978 | memset(&mpsc_shared_regs, 0, sizeof(mpsc_shared_regs)); |
... | ... | @@ -2004,7 +2004,7 @@ |
2004 | 2004 | module_exit(mpsc_drv_exit); |
2005 | 2005 | |
2006 | 2006 | MODULE_AUTHOR("Mark A. Greer <mgreer@mvista.com>"); |
2007 | -MODULE_DESCRIPTION("Generic Marvell MPSC serial/UART driver $Revision: 1.00 $"); | |
2007 | +MODULE_DESCRIPTION("Generic Marvell MPSC serial/UART driver"); | |
2008 | 2008 | MODULE_VERSION(MPSC_VERSION); |
2009 | 2009 | MODULE_LICENSE("GPL"); |
2010 | 2010 | MODULE_ALIAS_CHARDEV_MAJOR(MPSC_MAJOR); |
drivers/serial/pnx8xxx_uart.c
drivers/serial/sa1100.c
... | ... | @@ -20,9 +20,6 @@ |
20 | 20 | * You should have received a copy of the GNU General Public License |
21 | 21 | * along with this program; if not, write to the Free Software |
22 | 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
23 | - * | |
24 | - * $Id: sa1100.c,v 1.50 2002/07/29 14:41:04 rmk Exp $ | |
25 | - * | |
26 | 23 | */ |
27 | 24 | |
28 | 25 | #if defined(CONFIG_SERIAL_SA1100_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ) |
... | ... | @@ -892,7 +889,7 @@ |
892 | 889 | { |
893 | 890 | int ret; |
894 | 891 | |
895 | - printk(KERN_INFO "Serial: SA11x0 driver $Revision: 1.50 $\n"); | |
892 | + printk(KERN_INFO "Serial: SA11x0 driver\n"); | |
896 | 893 | |
897 | 894 | sa1100_init_ports(); |
898 | 895 | |
... | ... | @@ -915,7 +912,7 @@ |
915 | 912 | module_exit(sa1100_serial_exit); |
916 | 913 | |
917 | 914 | MODULE_AUTHOR("Deep Blue Solutions Ltd"); |
918 | -MODULE_DESCRIPTION("SA1100 generic serial port driver $Revision: 1.50 $"); | |
915 | +MODULE_DESCRIPTION("SA1100 generic serial port driver"); | |
919 | 916 | MODULE_LICENSE("GPL"); |
920 | 917 | MODULE_ALIAS_CHARDEV_MAJOR(SERIAL_SA1100_MAJOR); |
921 | 918 | MODULE_ALIAS("platform:sa11x0-uart"); |
drivers/serial/sunsu.c