Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341749
b: refs/heads/master
c: 663c2a6
h: refs/heads/master
i:
  341747: 4434c4c
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent 03bd282 commit 2f266f6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 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: 92a66593e5e7ae60242c430abac7bd710d1c7da0
refs/heads/master: 663c2a69e943b391b3cea25c616e339c5d5d4fab
14 changes: 7 additions & 7 deletions trunk/drivers/net/ethernet/i825xx/ether1.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static void ether1_timeout(struct net_device *dev);

/* ------------------------------------------------------------------------- */

static char version[] __devinitdata = "ether1 ethernet driver (c) 2000 Russell King v1.07\n";
static char version[] = "ether1 ethernet driver (c) 2000 Russell King v1.07\n";

#define BUS_16 16
#define BUS_8 8
Expand Down Expand Up @@ -250,7 +250,7 @@ ether1_readbuffer (struct net_device *dev, void *data, unsigned int start, unsig
} while (thislen);
}

static int __devinit
static int
ether1_ramtest(struct net_device *dev, unsigned char byte)
{
unsigned char *buffer = kmalloc (BUFFER_SIZE, GFP_KERNEL);
Expand Down Expand Up @@ -304,7 +304,7 @@ ether1_reset (struct net_device *dev)
return BUS_16;
}

static int __devinit
static int
ether1_init_2(struct net_device *dev)
{
int i;
Expand Down Expand Up @@ -966,7 +966,7 @@ ether1_setmulticastlist (struct net_device *dev)

/* ------------------------------------------------------------------------- */

static void __devinit ether1_banner(void)
static void ether1_banner(void)
{
static unsigned int version_printed = 0;

Expand All @@ -985,7 +985,7 @@ static const struct net_device_ops ether1_netdev_ops = {
.ndo_set_mac_address = eth_mac_addr,
};

static int __devinit
static int
ether1_probe(struct expansion_card *ec, const struct ecard_id *id)
{
struct net_device *dev;
Expand Down Expand Up @@ -1046,7 +1046,7 @@ ether1_probe(struct expansion_card *ec, const struct ecard_id *id)
return ret;
}

static void __devexit ether1_remove(struct expansion_card *ec)
static void ether1_remove(struct expansion_card *ec)
{
struct net_device *dev = ecard_get_drvdata(ec);

Expand All @@ -1064,7 +1064,7 @@ static const struct ecard_id ether1_ids[] = {

static struct ecard_driver ether1_driver = {
.probe = ether1_probe,
.remove = __devexit_p(ether1_remove),
.remove = ether1_remove,
.id_table = ether1_ids,
.drv = {
.name = "ether1",
Expand Down

0 comments on commit 2f266f6

Please sign in to comment.