Skip to content

Commit

Permalink
[ATM]: [he] This patch removes the ancient version string.
Browse files Browse the repository at this point in the history
Signed-off-by: Adrian Bunk <[email protected]>
Signed-off-by: Chas Williams <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
AdrianBunk authored and davem330 committed Jan 28, 2008
1 parent ef39592 commit 900092a
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions drivers/atm/he.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
/* $Id: he.c,v 1.18 2003/05/06 22:57:15 chas Exp $ */

/*
he.c
Expand Down Expand Up @@ -99,10 +97,6 @@
#define HPRINTK(fmt,args...) do { } while (0)
#endif /* HE_DEBUG */

/* version definition */

static char *version = "$Id: he.c,v 1.18 2003/05/06 22:57:15 chas Exp $";

/* declarations */

static int he_open(struct atm_vcc *vcc);
Expand Down Expand Up @@ -366,7 +360,7 @@ he_init_one(struct pci_dev *pci_dev, const struct pci_device_id *pci_ent)
struct he_dev *he_dev = NULL;
int err = 0;

printk(KERN_INFO "he: %s\n", version);
printk(KERN_INFO "ATM he driver\n");

if (pci_enable_device(pci_dev))
return -EIO;
Expand Down Expand Up @@ -2933,7 +2927,7 @@ he_proc_read(struct atm_dev *dev, loff_t *pos, char *page)

left = *pos;
if (!left--)
return sprintf(page, "%s\n", version);
return sprintf(page, "ATM he driver\n");

if (!left--)
return sprintf(page, "%s%s\n\n",
Expand Down

0 comments on commit 900092a

Please sign in to comment.