aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char/sx.c
diff options
context:
space:
mode:
authorJiri Slaby <jirislaby@gmail.com>2006-12-08 05:38:56 -0500
committerLinus Torvalds <torvalds@woody.osdl.org>2006-12-08 11:28:58 -0500
commit11c838772d58d9807b1cb7fa4e0bec1b0302e318 (patch)
treee23df9489b8bf9c2bafae89cfae21f0dff7c8e1a /drivers/char/sx.c
parent34b55b865ed12494e23b09b5d2e8da22047fd6a7 (diff)
[PATCH] Char: isicom, remove cvs stuff
We don't need RCS_ID & co. Extract them from the code and define only one macro -- SX_VERSION. Signed-off-by: Jiri Slaby <jirislaby@gmail.com> Cc: Alan Cox <alan@lxorguk.ukuu.org.uk> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/char/sx.c')
-rw-r--r--drivers/char/sx.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/char/sx.c b/drivers/char/sx.c
index e9bc147c32fe..cf08be76b8a7 100644
--- a/drivers/char/sx.c
+++ b/drivers/char/sx.c
@@ -32,7 +32,6 @@
32 * USA. 32 * USA.
33 * 33 *
34 * Revision history: 34 * Revision history:
35 * $Log: sx.c,v $
36 * Revision 1.33 2000/03/09 10:00:00 pvdl,wolff 35 * Revision 1.33 2000/03/09 10:00:00 pvdl,wolff
37 * - Fixed module and port counting 36 * - Fixed module and port counting
38 * - Fixed signal handling 37 * - Fixed signal handling
@@ -199,9 +198,7 @@
199 * 198 *
200 * */ 199 * */
201 200
202 201#define SX_VERSION 1.33
203#define RCS_ID "$Id: sx.c,v 1.33 2000/03/08 10:01:02 wolff, pvdl Exp $"
204#define RCS_REV "$Revision: 1.33 $"
205 202
206#include <linux/module.h> 203#include <linux/module.h>
207#include <linux/kdev_t.h> 204#include <linux/kdev_t.h>
@@ -2052,7 +2049,7 @@ static void printheader(void)
2052 if (!header_printed) { 2049 if (!header_printed) {
2053 printk (KERN_INFO "Specialix SX driver " 2050 printk (KERN_INFO "Specialix SX driver "
2054 "(C) 1998/1999 R.E.Wolff@BitWizard.nl \n"); 2051 "(C) 1998/1999 R.E.Wolff@BitWizard.nl \n");
2055 printk (KERN_INFO "sx: version %s\n", RCS_ID); 2052 printk (KERN_INFO "sx: version " __stringify(SX_VERSION) "\n");
2056 header_printed = 1; 2053 header_printed = 1;
2057 } 2054 }
2058} 2055}