Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 344286
b: refs/heads/master
c: cd09fea
h: refs/heads/master
v: v3
  • Loading branch information
Thomas Petazzoni committed Nov 20, 2012
1 parent 9251538 commit 1f0fbcb
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: f7d12ef53ddfd8175933af42bfc477376d19e19e
refs/heads/master: cd09fea446f485f1514ad444cb06a35e1dd63326
6 changes: 3 additions & 3 deletions trunk/drivers/dma/mv_xor.c
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@ mv_xor_conf_mbus_windows(struct mv_xor_device *xordev,
writel(win_enable, base + WINDOW_BAR_ENABLE(1));
}

static int mv_xor_probe(struct platform_device *pdev)
static int __devinit mv_xor_probe(struct platform_device *pdev)
{
const struct mbus_dram_target_info *dram;
struct mv_xor_device *xordev;
Expand Down Expand Up @@ -1358,7 +1358,7 @@ static int mv_xor_probe(struct platform_device *pdev)
return ret;
}

static int mv_xor_remove(struct platform_device *pdev)
static int __devexit mv_xor_remove(struct platform_device *pdev)
{
struct mv_xor_device *xordev = platform_get_drvdata(pdev);
int i;
Expand Down Expand Up @@ -1386,7 +1386,7 @@ MODULE_DEVICE_TABLE(of, mv_xor_dt_ids);

static struct platform_driver mv_xor_driver = {
.probe = mv_xor_probe,
.remove = mv_xor_remove,
.remove = __devexit_p(mv_xor_remove),
.driver = {
.owner = THIS_MODULE,
.name = MV_XOR_NAME,
Expand Down

0 comments on commit 1f0fbcb

Please sign in to comment.