Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 342991
b: refs/heads/master
c: d8628d1
h: refs/heads/master
i:
  342989: 9baa5d5
  342987: 70e22d8
  342983: 01c9722
  342975: 2e16b64
v: v3
  • Loading branch information
Bill Pemberton authored and Mark Brown committed Dec 9, 2012
1 parent 7967674 commit 7388971
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 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: 4652a0d0c48324e1227e2b2500d17045840e2fb3
refs/heads/master: d8628d1c824011dff9260f7e009c1bfed043c95e
6 changes: 3 additions & 3 deletions trunk/sound/soc/txx9/txx9aclc-ac97.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ static struct snd_soc_dai_driver txx9aclc_ac97_dai = {
},
};

static int __devinit txx9aclc_ac97_dev_probe(struct platform_device *pdev)
static int txx9aclc_ac97_dev_probe(struct platform_device *pdev)
{
struct txx9aclc_plat_drvdata *drvdata;
struct resource *r;
Expand Down Expand Up @@ -208,15 +208,15 @@ static int __devinit txx9aclc_ac97_dev_probe(struct platform_device *pdev)
return snd_soc_register_dai(&pdev->dev, &txx9aclc_ac97_dai);
}

static int __devexit txx9aclc_ac97_dev_remove(struct platform_device *pdev)
static int txx9aclc_ac97_dev_remove(struct platform_device *pdev)
{
snd_soc_unregister_dai(&pdev->dev);
return 0;
}

static struct platform_driver txx9aclc_ac97_driver = {
.probe = txx9aclc_ac97_dev_probe,
.remove = __devexit_p(txx9aclc_ac97_dev_remove),
.remove = txx9aclc_ac97_dev_remove,
.driver = {
.name = "txx9aclc-ac97",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions trunk/sound/soc/txx9/txx9aclc.c
Original file line number Diff line number Diff line change
Expand Up @@ -417,12 +417,12 @@ static struct snd_soc_platform_driver txx9aclc_soc_platform = {
.pcm_free = txx9aclc_pcm_free_dma_buffers,
};

static int __devinit txx9aclc_soc_platform_probe(struct platform_device *pdev)
static int txx9aclc_soc_platform_probe(struct platform_device *pdev)
{
return snd_soc_register_platform(&pdev->dev, &txx9aclc_soc_platform);
}

static int __devexit txx9aclc_soc_platform_remove(struct platform_device *pdev)
static int txx9aclc_soc_platform_remove(struct platform_device *pdev)
{
snd_soc_unregister_platform(&pdev->dev);
return 0;
Expand All @@ -435,7 +435,7 @@ static struct platform_driver txx9aclc_pcm_driver = {
},

.probe = txx9aclc_soc_platform_probe,
.remove = __devexit_p(txx9aclc_soc_platform_remove),
.remove = txx9aclc_soc_platform_remove,
};

module_platform_driver(txx9aclc_pcm_driver);
Expand Down

0 comments on commit 7388971

Please sign in to comment.