Commit 64caabb5 authored by Kai Germaschewski's avatar Kai Germaschewski

ISDN: Remove CVS $Revision

The revision numbers didn't get updated in ages, so they don't really
make sense anymore.
parent a274edfa
...@@ -15,8 +15,6 @@ ...@@ -15,8 +15,6 @@
#include "isdn_audio.h" #include "isdn_audio.h"
#include "isdn_common.h" #include "isdn_common.h"
char *isdn_audio_revision = "$Revision: 1.21.6.3 $";
/* /*
* Misc. lookup-tables. * Misc. lookup-tables.
*/ */
......
...@@ -48,22 +48,6 @@ struct isdn_slot { ...@@ -48,22 +48,6 @@ struct isdn_slot {
static struct isdn_slot slot[ISDN_MAX_CHANNELS]; static struct isdn_slot slot[ISDN_MAX_CHANNELS];
static char *isdn_revision = "$Revision: 1.114.6.16 $";
extern char *isdn_net_revision;
extern char *isdn_tty_revision;
#ifdef CONFIG_ISDN_PPP
extern char *isdn_ppp_revision;
#else
static char *isdn_ppp_revision = ": none $";
#endif
#ifdef CONFIG_ISDN_AUDIO
extern char *isdn_audio_revision;
#else
static char *isdn_audio_revision = ": none $";
#endif
extern char *isdn_v110_revision;
#if defined(CONFIG_ISDN_DIVERSION) || defined(CONFIG_ISDN_DIVERSION_MODULE) #if defined(CONFIG_ISDN_DIVERSION) || defined(CONFIG_ISDN_DIVERSION_MODULE)
static isdn_divert_if *divert_if; /* = NULL */ static isdn_divert_if *divert_if; /* = NULL */
#else #else
...@@ -2074,21 +2058,6 @@ isdn_hard_header_len(void) ...@@ -2074,21 +2058,6 @@ isdn_hard_header_len(void)
***************************************************************************** *****************************************************************************
*/ */
static char *
isdn_getrev(const char *revision)
{
char *rev;
char *p;
if ((p = strchr(revision, ':'))) {
rev = p + 2;
p = strchr(rev, '$');
*--p = 0;
} else
rev = "???";
return rev;
}
#ifdef CONFIG_DEVFS_FS #ifdef CONFIG_DEVFS_FS
static devfs_handle_t devfs_handle; static devfs_handle_t devfs_handle;
...@@ -2176,7 +2145,6 @@ static int __init isdn_init(void) ...@@ -2176,7 +2145,6 @@ static int __init isdn_init(void)
{ {
int i; int i;
int retval; int retval;
char tmprev[50];
dev = vmalloc(sizeof(*dev)); dev = vmalloc(sizeof(*dev));
if (!dev) { if (!dev) {
...@@ -2215,26 +2183,9 @@ static int __init isdn_init(void) ...@@ -2215,26 +2183,9 @@ static int __init isdn_init(void)
} }
#endif /* CONFIG_ISDN_PPP */ #endif /* CONFIG_ISDN_PPP */
strcpy(tmprev, isdn_revision);
printk(KERN_NOTICE "ISDN subsystem Rev: %s/", isdn_getrev(tmprev));
strcpy(tmprev, isdn_tty_revision);
printk("%s/", isdn_getrev(tmprev));
strcpy(tmprev, isdn_net_revision);
printk("%s/", isdn_getrev(tmprev));
strcpy(tmprev, isdn_ppp_revision);
printk("%s/", isdn_getrev(tmprev));
strcpy(tmprev, isdn_audio_revision);
printk("%s/", isdn_getrev(tmprev));
strcpy(tmprev, isdn_v110_revision);
printk("%s", isdn_getrev(tmprev));
#ifdef MODULE
printk(" loaded\n");
#else
printk("\n");
#endif
isdn_info_update();
isdn_net_init(); isdn_net_init();
printk(KERN_NOTICE "ISDN subsystem initialized\n");
isdn_info_update();
return 0; return 0;
err_tty_modem: err_tty_modem:
......
...@@ -33,8 +33,6 @@ ...@@ -33,8 +33,6 @@
#include "isdn_concap.h" #include "isdn_concap.h"
#include "isdn_ciscohdlck.h" #include "isdn_ciscohdlck.h"
char *isdn_net_revision = "$Revision: 1.140.6.11 $";
// ISDN_NET_ENCAP_IPTYP // ISDN_NET_ENCAP_IPTYP
// ethernet type field // ethernet type field
// ====================================================================== // ======================================================================
......
...@@ -564,8 +564,6 @@ isdn_ppp_lp_push_header(void *priv, struct sk_buff *skb, u16 proto); ...@@ -564,8 +564,6 @@ isdn_ppp_lp_push_header(void *priv, struct sk_buff *skb, u16 proto);
static void static void
isdn_ppp_dev_kick_up(void *priv); isdn_ppp_dev_kick_up(void *priv);
char *isdn_ppp_revision = "$Revision: 1.85.6.9 $";
/* /*
* frame log (debug) * frame log (debug)
*/ */
......
...@@ -51,9 +51,6 @@ static int bit2si[8] = ...@@ -51,9 +51,6 @@ static int bit2si[8] =
static int si2bit[8] = static int si2bit[8] =
{4, 1, 4, 4, 4, 4, 4, 4}; {4, 1, 4, 4, 4, 4, 4, 4};
char *isdn_tty_revision = "$Revision: 1.94.6.9 $";
/* isdn_tty_try_read() is called from within isdn_tty_rcv_skb() /* isdn_tty_try_read() is called from within isdn_tty_rcv_skb()
* to stuff incoming data directly into a tty's flip-buffer. This * to stuff incoming data directly into a tty's flip-buffer. This
* is done to speed up tty-receiving if the receive-queue is empty. * is done to speed up tty-receiving if the receive-queue is empty.
......
...@@ -16,9 +16,6 @@ ...@@ -16,9 +16,6 @@
#include "isdn_tty.h" #include "isdn_tty.h"
#include "isdn_ttyfax.h" #include "isdn_ttyfax.h"
static char *isdn_tty_fax_revision = "$Revision: 1.7.6.2 $";
#define PARSE_ERROR1 { isdn_tty_fax_modem_result(1, info); return 1; } #define PARSE_ERROR1 { isdn_tty_fax_modem_result(1, info); return 1; }
static char * static char *
......
...@@ -16,8 +16,6 @@ ...@@ -16,8 +16,6 @@
#undef ISDN_V110_DEBUG #undef ISDN_V110_DEBUG
char *isdn_v110_revision = "$Revision: 1.5.6.4 $";
#define V110_38400 255 #define V110_38400 255
#define V110_19200 15 #define V110_19200 15
#define V110_9600 3 #define V110_9600 3
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment