diff options
author | Adrian Bunk <bunk@stusta.de> | 2005-09-03 17:04:55 -0400 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2005-09-05 18:02:31 -0400 |
commit | 9d8cc1b6c3cba2be61c0884e3a04dd6baea70654 (patch) | |
tree | 5c469e68a5ff9616e5d91ae632e75f9652162ed1 /drivers/net | |
parent | 0bf0519d2b531459009caab718b94fdf94d63d17 (diff) |
[PATCH] drivers/net/ne3210.c: cleanups
- make two needlessly global functions static
- kill an ancient version variable
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Cc: Jeff Garzik <jgarzik@pobox.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net')
-rw-r--r-- | drivers/net/ne3210.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/drivers/net/ne3210.c b/drivers/net/ne3210.c index 6c92f0969015..73501d846588 100644 --- a/drivers/net/ne3210.c +++ b/drivers/net/ne3210.c | |||
@@ -26,9 +26,6 @@ | |||
26 | Updated to EISA probing API 5/2003 by Marc Zyngier. | 26 | Updated to EISA probing API 5/2003 by Marc Zyngier. |
27 | */ | 27 | */ |
28 | 28 | ||
29 | static const char *version = | ||
30 | "ne3210.c: Driver revision v0.03, 30/09/98\n"; | ||
31 | |||
32 | #include <linux/module.h> | 29 | #include <linux/module.h> |
33 | #include <linux/eisa.h> | 30 | #include <linux/eisa.h> |
34 | #include <linux/kernel.h> | 31 | #include <linux/kernel.h> |
@@ -197,7 +194,7 @@ static int __init ne3210_eisa_probe (struct device *device) | |||
197 | ei_status.priv = phys_mem; | 194 | ei_status.priv = phys_mem; |
198 | 195 | ||
199 | if (ei_debug > 0) | 196 | if (ei_debug > 0) |
200 | printk(version); | 197 | printk("ne3210 loaded.\n"); |
201 | 198 | ||
202 | ei_status.reset_8390 = &ne3210_reset_8390; | 199 | ei_status.reset_8390 = &ne3210_reset_8390; |
203 | ei_status.block_input = &ne3210_block_input; | 200 | ei_status.block_input = &ne3210_block_input; |
@@ -360,12 +357,12 @@ MODULE_DESCRIPTION("NE3210 EISA Ethernet driver"); | |||
360 | MODULE_LICENSE("GPL"); | 357 | MODULE_LICENSE("GPL"); |
361 | MODULE_DEVICE_TABLE(eisa, ne3210_ids); | 358 | MODULE_DEVICE_TABLE(eisa, ne3210_ids); |
362 | 359 | ||
363 | int ne3210_init(void) | 360 | static int ne3210_init(void) |
364 | { | 361 | { |
365 | return eisa_driver_register (&ne3210_eisa_driver); | 362 | return eisa_driver_register (&ne3210_eisa_driver); |
366 | } | 363 | } |
367 | 364 | ||
368 | void ne3210_cleanup(void) | 365 | static void ne3210_cleanup(void) |
369 | { | 366 | { |
370 | eisa_driver_unregister (&ne3210_eisa_driver); | 367 | eisa_driver_unregister (&ne3210_eisa_driver); |
371 | } | 368 | } |