Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 342987
b: refs/heads/master
c: 9ac8a71
h: refs/heads/master
i:
  342985: 0061279
  342983: 01c9722
v: v3
  • Loading branch information
Bill Pemberton authored and Mark Brown committed Dec 9, 2012
1 parent 2b58b01 commit 70e22d8
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: 7ff6000627eb996d6d02aa5362ecca7b7ac7ebef
refs/heads/master: 9ac8a7122e17ccaaf35714f6d8d91ef2eae0e077
6 changes: 3 additions & 3 deletions trunk/sound/soc/s6000/s6000-i2s.c
Original file line number Diff line number Diff line change
Expand Up @@ -436,7 +436,7 @@ static struct snd_soc_dai_driver s6000_i2s_dai = {
.ops = &s6000_i2s_dai_ops,
};

static int __devinit s6000_i2s_probe(struct platform_device *pdev)
static int s6000_i2s_probe(struct platform_device *pdev)
{
struct s6000_i2s_dev *dev;
struct resource *scbmem, *sifmem, *region, *dma1, *dma2;
Expand Down Expand Up @@ -566,7 +566,7 @@ static int __devinit s6000_i2s_probe(struct platform_device *pdev)
return ret;
}

static void __devexit s6000_i2s_remove(struct platform_device *pdev)
static void s6000_i2s_remove(struct platform_device *pdev)
{
struct s6000_i2s_dev *dev = dev_get_drvdata(&pdev->dev);
struct resource *region;
Expand Down Expand Up @@ -597,7 +597,7 @@ static void __devexit s6000_i2s_remove(struct platform_device *pdev)

static struct platform_driver s6000_i2s_driver = {
.probe = s6000_i2s_probe,
.remove = __devexit_p(s6000_i2s_remove),
.remove = s6000_i2s_remove,
.driver = {
.name = "s6000-i2s",
.owner = THIS_MODULE,
Expand Down
6 changes: 3 additions & 3 deletions trunk/sound/soc/s6000/s6000-pcm.c
Original file line number Diff line number Diff line change
Expand Up @@ -500,12 +500,12 @@ static struct snd_soc_platform_driver s6000_soc_platform = {
.pcm_free = s6000_pcm_free,
};

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

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

.probe = s6000_soc_platform_probe,
.remove = __devexit_p(s6000_soc_platform_remove),
.remove = s6000_soc_platform_remove,
};

module_platform_driver(s6000_pcm_driver);
Expand Down

0 comments on commit 70e22d8

Please sign in to comment.