Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7268
b: refs/heads/master
c: 9d8cc1b
h: refs/heads/master
v: v3
  • Loading branch information
Adrian Bunk authored and Jeff Garzik committed Sep 5, 2005
1 parent 0493456 commit b21e05f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0bf0519d2b531459009caab718b94fdf94d63d17
refs/heads/master: 9d8cc1b6c3cba2be61c0884e3a04dd6baea70654
9 changes: 3 additions & 6 deletions trunk/drivers/net/ne3210.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@
Updated to EISA probing API 5/2003 by Marc Zyngier.
*/

static const char *version =
"ne3210.c: Driver revision v0.03, 30/09/98\n";

#include <linux/module.h>
#include <linux/eisa.h>
#include <linux/kernel.h>
Expand Down Expand Up @@ -197,7 +194,7 @@ static int __init ne3210_eisa_probe (struct device *device)
ei_status.priv = phys_mem;

if (ei_debug > 0)
printk(version);
printk("ne3210 loaded.\n");

ei_status.reset_8390 = &ne3210_reset_8390;
ei_status.block_input = &ne3210_block_input;
Expand Down Expand Up @@ -360,12 +357,12 @@ MODULE_DESCRIPTION("NE3210 EISA Ethernet driver");
MODULE_LICENSE("GPL");
MODULE_DEVICE_TABLE(eisa, ne3210_ids);

int ne3210_init(void)
static int ne3210_init(void)
{
return eisa_driver_register (&ne3210_eisa_driver);
}

void ne3210_cleanup(void)
static void ne3210_cleanup(void)
{
eisa_driver_unregister (&ne3210_eisa_driver);
}
Expand Down

0 comments on commit b21e05f

Please sign in to comment.