Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 107310
b: refs/heads/master
c: d7b843d
h: refs/heads/master
v: v3
  • Loading branch information
Mike Frysinger authored and Jeff Garzik committed Jul 29, 2008
1 parent 6b3a8e7 commit 7321817
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: 22ae03a190011fa2241e68a6c51369d78039348e
refs/heads/master: d7b843d393cec677583e1aa971df09b140dcfd5e
6 changes: 3 additions & 3 deletions trunk/drivers/net/bfin_mac.c
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,7 @@ static int bfin_mac_close(struct net_device *dev)
return 0;
}

static int __init bfin_mac_probe(struct platform_device *pdev)
static int __devinit bfin_mac_probe(struct platform_device *pdev)
{
struct net_device *ndev;
struct bfin_mac_local *lp;
Expand Down Expand Up @@ -1081,7 +1081,7 @@ static int __init bfin_mac_probe(struct platform_device *pdev)
return rc;
}

static int bfin_mac_remove(struct platform_device *pdev)
static int __devexit bfin_mac_remove(struct platform_device *pdev)
{
struct net_device *ndev = platform_get_drvdata(pdev);
struct bfin_mac_local *lp = netdev_priv(ndev);
Expand Down Expand Up @@ -1128,7 +1128,7 @@ static int bfin_mac_resume(struct platform_device *pdev)

static struct platform_driver bfin_mac_driver = {
.probe = bfin_mac_probe,
.remove = bfin_mac_remove,
.remove = __devexit_p(bfin_mac_remove),
.resume = bfin_mac_resume,
.suspend = bfin_mac_suspend,
.driver = {
Expand Down

0 comments on commit 7321817

Please sign in to comment.