Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341779
b: refs/heads/master
c: 19d1b44
h: refs/heads/master
i:
  341777: 308fb07
  341775: d193dc2
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent 2808fbe commit 07f4873
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: f57e68488e27fb99bda29eb0c42b5450e439aa87
refs/heads/master: 19d1b44aa8eba6304abdfe9761bb941f38b512f5
6 changes: 3 additions & 3 deletions trunk/drivers/net/ethernet/microchip/enc28j60.c
Original file line number Diff line number Diff line change
Expand Up @@ -1541,7 +1541,7 @@ static const struct net_device_ops enc28j60_netdev_ops = {
.ndo_validate_addr = eth_validate_addr,
};

static int __devinit enc28j60_probe(struct spi_device *spi)
static int enc28j60_probe(struct spi_device *spi)
{
struct net_device *dev;
struct enc28j60_net *priv;
Expand Down Expand Up @@ -1617,7 +1617,7 @@ static int __devinit enc28j60_probe(struct spi_device *spi)
return ret;
}

static int __devexit enc28j60_remove(struct spi_device *spi)
static int enc28j60_remove(struct spi_device *spi)
{
struct enc28j60_net *priv = dev_get_drvdata(&spi->dev);

Expand All @@ -1637,7 +1637,7 @@ static struct spi_driver enc28j60_driver = {
.owner = THIS_MODULE,
},
.probe = enc28j60_probe,
.remove = __devexit_p(enc28j60_remove),
.remove = enc28j60_remove,
};

static int __init enc28j60_init(void)
Expand Down

0 comments on commit 07f4873

Please sign in to comment.