diff options
Diffstat (limited to 'drivers/s390/net/ctcmain.c')
-rw-r--r-- | drivers/s390/net/ctcmain.c | 19 |
1 files changed, 2 insertions, 17 deletions
diff --git a/drivers/s390/net/ctcmain.c b/drivers/s390/net/ctcmain.c index 1901feef07d9..af9f212314b3 100644 --- a/drivers/s390/net/ctcmain.c +++ b/drivers/s390/net/ctcmain.c | |||
@@ -1,6 +1,4 @@ | |||
1 | /* | 1 | /* |
2 | * $Id: ctcmain.c,v 1.79 2006/01/11 11:32:18 cohuck Exp $ | ||
3 | * | ||
4 | * CTC / ESCON network driver | 2 | * CTC / ESCON network driver |
5 | * | 3 | * |
6 | * Copyright (C) 2001 IBM Deutschland Entwicklung GmbH, IBM Corporation | 4 | * Copyright (C) 2001 IBM Deutschland Entwicklung GmbH, IBM Corporation |
@@ -37,8 +35,6 @@ | |||
37 | * along with this program; if not, write to the Free Software | 35 | * along with this program; if not, write to the Free Software |
38 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | 36 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
39 | * | 37 | * |
40 | * RELEASE-TAG: CTC/ESCON network driver $Revision: 1.79 $ | ||
41 | * | ||
42 | */ | 38 | */ |
43 | #undef DEBUG | 39 | #undef DEBUG |
44 | #include <linux/module.h> | 40 | #include <linux/module.h> |
@@ -248,22 +244,11 @@ static void | |||
248 | print_banner(void) | 244 | print_banner(void) |
249 | { | 245 | { |
250 | static int printed = 0; | 246 | static int printed = 0; |
251 | char vbuf[] = "$Revision: 1.79 $"; | ||
252 | char *version = vbuf; | ||
253 | 247 | ||
254 | if (printed) | 248 | if (printed) |
255 | return; | 249 | return; |
256 | if ((version = strchr(version, ':'))) { | 250 | |
257 | char *p = strchr(version + 1, '$'); | 251 | printk(KERN_INFO "CTC driver initialized\n"); |
258 | if (p) | ||
259 | *p = '\0'; | ||
260 | } else | ||
261 | version = " ??? "; | ||
262 | printk(KERN_INFO "CTC driver Version%s" | ||
263 | #ifdef DEBUG | ||
264 | " (DEBUG-VERSION, " __DATE__ __TIME__ ")" | ||
265 | #endif | ||
266 | " initialized\n", version); | ||
267 | printed = 1; | 252 | printed = 1; |
268 | } | 253 | } |
269 | 254 | ||