Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284049
b: refs/heads/master
c: a92b0a0
h: refs/heads/master
i:
  284047: 497a2e3
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Jan 2, 2012
1 parent 78f5473 commit c58b7fe
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 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: bf791bdb383fdf159c2282d958682b92a2601170
refs/heads/master: a92b0a0803a40f91689fa479b7a169d0467ba33f
7 changes: 2 additions & 5 deletions trunk/sound/soc/codecs/rt5631.c
Original file line number Diff line number Diff line change
Expand Up @@ -1724,24 +1724,21 @@ static int rt5631_i2c_probe(struct i2c_client *i2c,
struct rt5631_priv *rt5631;
int ret;

rt5631 = kzalloc(sizeof(struct rt5631_priv), GFP_KERNEL);
rt5631 = devm_kzalloc(&i2c->dev, sizeof(struct rt5631_priv),
GFP_KERNEL);
if (NULL == rt5631)
return -ENOMEM;

i2c_set_clientdata(i2c, rt5631);

ret = snd_soc_register_codec(&i2c->dev, &soc_codec_dev_rt5631,
rt5631_dai, ARRAY_SIZE(rt5631_dai));
if (ret < 0)
kfree(rt5631);

return ret;
}

static __devexit int rt5631_i2c_remove(struct i2c_client *client)
{
snd_soc_unregister_codec(&client->dev);
kfree(i2c_get_clientdata(client));
return 0;
}

Expand Down

0 comments on commit c58b7fe

Please sign in to comment.