Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 341782
b: refs/heads/master
c: 26735f2
h: refs/heads/master
v: v3
  • Loading branch information
Bill Pemberton authored and Greg Kroah-Hartman committed Dec 3, 2012
1 parent dc430ea commit 7a2a693
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: 3a036ce5c6fdd787d3146c639871668996221c0d
refs/heads/master: 26735f2f126f5d75234e205687e3c15e1a5a3684
6 changes: 3 additions & 3 deletions trunk/drivers/net/ethernet/nuvoton/w90p910_ether.c
Original file line number Diff line number Diff line change
Expand Up @@ -978,7 +978,7 @@ static int w90p910_ether_setup(struct net_device *dev)
return 0;
}

static int __devinit w90p910_ether_probe(struct platform_device *pdev)
static int w90p910_ether_probe(struct platform_device *pdev)
{
struct w90p910_ether *ether;
struct net_device *dev;
Expand Down Expand Up @@ -1071,7 +1071,7 @@ static int __devinit w90p910_ether_probe(struct platform_device *pdev)
return error;
}

static int __devexit w90p910_ether_remove(struct platform_device *pdev)
static int w90p910_ether_remove(struct platform_device *pdev)
{
struct net_device *dev = platform_get_drvdata(pdev);
struct w90p910_ether *ether = netdev_priv(dev);
Expand All @@ -1096,7 +1096,7 @@ static int __devexit w90p910_ether_remove(struct platform_device *pdev)

static struct platform_driver w90p910_ether_driver = {
.probe = w90p910_ether_probe,
.remove = __devexit_p(w90p910_ether_remove),
.remove = w90p910_ether_remove,
.driver = {
.name = "nuc900-emc",
.owner = THIS_MODULE,
Expand Down

0 comments on commit 7a2a693

Please sign in to comment.