Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 342993
b: refs/heads/master
c: e51e97e
h: refs/heads/master
i:
  342991: 7388971
v: v3
  • Loading branch information
Bill Pemberton authored and Mark Brown committed Dec 9, 2012
1 parent 4608e8a commit ba9541c
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: da794876f27c48ba67a6b3295ded27bbd81ba7e4
refs/heads/master: e51e97eecdb2a4415aac5f1a69aa66ed787f1217
6 changes: 3 additions & 3 deletions trunk/sound/soc/soc-utils.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ static struct snd_soc_dai_driver dummy_dai = {
.name = "snd-soc-dummy-dai",
};

static __devinit int snd_soc_dummy_probe(struct platform_device *pdev)
static int snd_soc_dummy_probe(struct platform_device *pdev)
{
int ret;

Expand All @@ -111,7 +111,7 @@ static __devinit int snd_soc_dummy_probe(struct platform_device *pdev)
return ret;
}

static __devexit int snd_soc_dummy_remove(struct platform_device *pdev)
static int snd_soc_dummy_remove(struct platform_device *pdev)
{
snd_soc_unregister_platform(&pdev->dev);
snd_soc_unregister_codec(&pdev->dev);
Expand All @@ -125,7 +125,7 @@ static struct platform_driver soc_dummy_driver = {
.owner = THIS_MODULE,
},
.probe = snd_soc_dummy_probe,
.remove = __devexit_p(snd_soc_dummy_remove),
.remove = snd_soc_dummy_remove,
};

static struct platform_device *soc_dummy_dev;
Expand Down

0 comments on commit ba9541c

Please sign in to comment.