Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 283913
b: refs/heads/master
c: 3025ae4
h: refs/heads/master
i:
  283911: 930f121
v: v3
  • Loading branch information
Mark Brown committed Dec 9, 2011
1 parent 60e2293 commit e98cc23
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 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: 7fcadfd17699b6b7973ce4f99eae47a11b4c44a7
refs/heads/master: 3025ae45d6d905c8e973bba59d6f9a1be0da734d
7 changes: 3 additions & 4 deletions trunk/sound/soc/codecs/wm8770.c
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,8 @@ static int __devinit wm8770_spi_probe(struct spi_device *spi)
struct wm8770_priv *wm8770;
int ret;

wm8770 = kzalloc(sizeof(struct wm8770_priv), GFP_KERNEL);
wm8770 = devm_kzalloc(&spi->dev, sizeof(struct wm8770_priv),
GFP_KERNEL);
if (!wm8770)
return -ENOMEM;

Expand All @@ -704,15 +705,13 @@ static int __devinit wm8770_spi_probe(struct spi_device *spi)

ret = snd_soc_register_codec(&spi->dev,
&soc_codec_dev_wm8770, &wm8770_dai, 1);
if (ret < 0)
kfree(wm8770);

return ret;
}

static int __devexit wm8770_spi_remove(struct spi_device *spi)
{
snd_soc_unregister_codec(&spi->dev);
kfree(spi_get_drvdata(spi));
return 0;
}

Expand Down

0 comments on commit e98cc23

Please sign in to comment.