diff options
author | Steffen Klassert <klassert@mathematik.tu-chemnitz.de> | 2006-03-26 04:37:42 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-26 11:56:59 -0500 |
commit | 61238602622c965db052927c89901aa08f88d933 (patch) | |
tree | fa9aad9940ae692df63178d85d11a9d57dc12a94 | |
parent | 373a688742d7ba31cafc4c7b9bc09eba257860bd (diff) |
[PATCH] 3c59x: remove per-driver versioning
Remove per-driver versioning.
Signed-off-by: Steffen Klassert <klassert@mathematik.tu-chemnitz.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | drivers/net/3c59x.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/drivers/net/3c59x.c b/drivers/net/3c59x.c index 1352eb66c742..51ac35966b2d 100644 --- a/drivers/net/3c59x.c +++ b/drivers/net/3c59x.c | |||
@@ -196,8 +196,6 @@ | |||
196 | 196 | ||
197 | 197 | ||
198 | #define DRV_NAME "3c59x" | 198 | #define DRV_NAME "3c59x" |
199 | #define DRV_VERSION "LK1.1.19" | ||
200 | #define DRV_RELDATE "10 Nov 2002" | ||
201 | 199 | ||
202 | 200 | ||
203 | 201 | ||
@@ -275,10 +273,8 @@ static char version[] __devinitdata = | |||
275 | DRV_NAME ": Donald Becker and others. www.scyld.com/network/vortex.html\n"; | 273 | DRV_NAME ": Donald Becker and others. www.scyld.com/network/vortex.html\n"; |
276 | 274 | ||
277 | MODULE_AUTHOR("Donald Becker <becker@scyld.com>"); | 275 | MODULE_AUTHOR("Donald Becker <becker@scyld.com>"); |
278 | MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver " | 276 | MODULE_DESCRIPTION("3Com 3c59x/3c9xx ethernet driver "); |
279 | DRV_VERSION " " DRV_RELDATE); | ||
280 | MODULE_LICENSE("GPL"); | 277 | MODULE_LICENSE("GPL"); |
281 | MODULE_VERSION(DRV_VERSION); | ||
282 | 278 | ||
283 | 279 | ||
284 | /* Operational parameter that usually are not changed. */ | 280 | /* Operational parameter that usually are not changed. */ |
@@ -1236,7 +1232,7 @@ static int __devinit vortex_probe1(struct device *gendev, | |||
1236 | if (print_info) | 1232 | if (print_info) |
1237 | printk (KERN_INFO "See Documentation/networking/vortex.txt\n"); | 1233 | printk (KERN_INFO "See Documentation/networking/vortex.txt\n"); |
1238 | 1234 | ||
1239 | printk(KERN_INFO "%s: 3Com %s %s at %p. Vers " DRV_VERSION "\n", | 1235 | printk(KERN_INFO "%s: 3Com %s %s at %p.\n", |
1240 | print_name, | 1236 | print_name, |
1241 | pdev ? "PCI" : "EISA", | 1237 | pdev ? "PCI" : "EISA", |
1242 | vci->name, | 1238 | vci->name, |
@@ -3040,7 +3036,6 @@ static void vortex_get_drvinfo(struct net_device *dev, | |||
3040 | struct vortex_private *vp = netdev_priv(dev); | 3036 | struct vortex_private *vp = netdev_priv(dev); |
3041 | 3037 | ||
3042 | strcpy(info->driver, DRV_NAME); | 3038 | strcpy(info->driver, DRV_NAME); |
3043 | strcpy(info->version, DRV_VERSION); | ||
3044 | if (VORTEX_PCI(vp)) { | 3039 | if (VORTEX_PCI(vp)) { |
3045 | strcpy(info->bus_info, pci_name(VORTEX_PCI(vp))); | 3040 | strcpy(info->bus_info, pci_name(VORTEX_PCI(vp))); |
3046 | } else { | 3041 | } else { |