Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 284057
b: refs/heads/master
c: a54877d
h: refs/heads/master
i:
  284055: 7452892
v: v3
  • Loading branch information
Axel Lin authored and Mark Brown committed Jan 2, 2012
1 parent 52d6a2f commit 4b58d83
Show file tree
Hide file tree
Showing 2 changed files with 3 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: 7fd8a67446aded9d25e0ae1d94d19105f1620af5
refs/heads/master: a54877d7456ffa88c95d7eb587971792cb1892d6
6 changes: 2 additions & 4 deletions trunk/sound/soc/codecs/tlv320dac33.c
Original file line number Diff line number Diff line change
Expand Up @@ -1532,7 +1532,8 @@ static int __devinit dac33_i2c_probe(struct i2c_client *client,
}
pdata = client->dev.platform_data;

dac33 = kzalloc(sizeof(struct tlv320dac33_priv), GFP_KERNEL);
dac33 = devm_kzalloc(&client->dev, sizeof(struct tlv320dac33_priv),
GFP_KERNEL);
if (dac33 == NULL)
return -ENOMEM;

Expand Down Expand Up @@ -1587,7 +1588,6 @@ static int __devinit dac33_i2c_probe(struct i2c_client *client,
if (dac33->power_gpio >= 0)
gpio_free(dac33->power_gpio);
err_gpio:
kfree(dac33);
return ret;
}

Expand All @@ -1604,8 +1604,6 @@ static int __devexit dac33_i2c_remove(struct i2c_client *client)
regulator_bulk_free(ARRAY_SIZE(dac33->supplies), dac33->supplies);

snd_soc_unregister_codec(&client->dev);
kfree(dac33);

return 0;
}

Expand Down

0 comments on commit 4b58d83

Please sign in to comment.