From: Steffen Klassert Remove per-driver versioning. Signed-off-by: Steffen Klassert Signed-off-by: Andrew Morton --- drivers/net/3c59x.c | 9 ++------- 1 files changed, 2 insertions(+), 7 deletions(-) diff -puN drivers/net/3c59x.c~3c59x-remove-per-driver-versioning drivers/net/3c59x.c --- devel/drivers/net/3c59x.c~3c59x-remove-per-driver-versioning 2006-03-11 17:43:49.000000000 -0800 +++ devel-akpm/drivers/net/3c59x.c 2006-03-11 17:43:49.000000000 -0800 @@ -196,8 +196,6 @@ #define DRV_NAME "3c59x" -#define DRV_VERSION "LK1.1.19" -#define DRV_RELDATE "10 Nov 2002" @@ -275,10 +273,8 @@ static char version[] __devinitdata = DRV_NAME ": Donald Becker and others. www.scyld.com/network/vortex.html\n"; MODULE_AUTHOR("Donald Becker "); -MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver " - DRV_VERSION " " DRV_RELDATE); +MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver "); MODULE_LICENSE("GPL"); -MODULE_VERSION(DRV_VERSION); /* Operational parameter that usually are not changed. */ @@ -1236,7 +1232,7 @@ static int __devinit vortex_probe1(struc if (print_info) printk (KERN_INFO "See Documentation/networking/vortex.txt\n"); - printk(KERN_INFO "%s: 3Com %s %s at %p. Vers " DRV_VERSION "\n", + printk(KERN_INFO "%s: 3Com %s %s at %p.\n", print_name, pdev ? "PCI" : "EISA", vci->name, @@ -3040,7 +3036,6 @@ static void vortex_get_drvinfo(struct ne struct vortex_private *vp = netdev_priv(dev); strcpy(info->driver, DRV_NAME); - strcpy(info->version, DRV_VERSION); if (VORTEX_PCI(vp)) { strcpy(info->bus_info, pci_name(VORTEX_PCI(vp))); } else { _