Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 324312
b: refs/heads/master
c: 8c3db42
h: refs/heads/master
v: v3
  • Loading branch information
Felipe Balbi authored and Greg Kroah-Hartman committed Aug 16, 2012
1 parent be71d61 commit 17a1e8a
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: 09649a85adfedde99b47b6ccef3fea696fad72be
refs/heads/master: 8c3db42fea94cc360446602d3d1a4f50ae98af16
6 changes: 3 additions & 3 deletions trunk/drivers/w1/masters/omap_hdq.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ struct hdq_data {
};

static int __devinit omap_hdq_probe(struct platform_device *pdev);
static int omap_hdq_remove(struct platform_device *pdev);
static int __devexit omap_hdq_remove(struct platform_device *pdev);

static struct platform_driver omap_hdq_driver = {
.probe = omap_hdq_probe,
.remove = omap_hdq_remove,
.remove = __devexit_p(omap_hdq_remove),
.driver = {
.name = "omap_hdq",
},
Expand Down Expand Up @@ -628,7 +628,7 @@ static int __devinit omap_hdq_probe(struct platform_device *pdev)

}

static int omap_hdq_remove(struct platform_device *pdev)
static int __devexit omap_hdq_remove(struct platform_device *pdev)
{
struct hdq_data *hdq_data = platform_get_drvdata(pdev);

Expand Down

0 comments on commit 17a1e8a

Please sign in to comment.