Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 96598
b: refs/heads/master
c: e21fd4f
h: refs/heads/master
v: v3
  • Loading branch information
Enrico Scholz authored and Jeff Garzik committed May 13, 2008
1 parent 1e016c3 commit 3db908b
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: a300344ab9b77130310fc225fdc7677e129b1163
refs/heads/master: e21fd4f07dd0c2630c3db41f419e4c658d0dee2c
6 changes: 3 additions & 3 deletions trunk/drivers/net/dm9000.c
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@ dm9000_release_board(struct platform_device *pdev, struct board_info *db)
/*
* Search DM9000 board, allocate space and register it
*/
static int
static int __devinit
dm9000_probe(struct platform_device *pdev)
{
struct dm9000_plat_data *pdata = pdev->dev.platform_data;
Expand Down Expand Up @@ -1372,7 +1372,7 @@ dm9000_drv_resume(struct platform_device *dev)
return 0;
}

static int
static int __devexit
dm9000_drv_remove(struct platform_device *pdev)
{
struct net_device *ndev = platform_get_drvdata(pdev);
Expand All @@ -1393,7 +1393,7 @@ static struct platform_driver dm9000_driver = {
.owner = THIS_MODULE,
},
.probe = dm9000_probe,
.remove = dm9000_drv_remove,
.remove = __devexit_p(dm9000_drv_remove),
.suspend = dm9000_drv_suspend,
.resume = dm9000_drv_resume,
};
Expand Down

0 comments on commit 3db908b

Please sign in to comment.