ASoC: Convert CS42L73 to devm_kzalloc()
Signed-off-by: Brian Austin <brian.austin@cirrus.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
af3c2621a9
commit
cc0b401ad8
1 changed files with 2 additions and 4 deletions
|
@ -1339,7 +1339,8 @@ static __devinit int cs42l73_i2c_probe(struct i2c_client *i2c_client,
|
||||||
unsigned int devid = 0;
|
unsigned int devid = 0;
|
||||||
unsigned int reg;
|
unsigned int reg;
|
||||||
|
|
||||||
cs42l73 = kzalloc((sizeof *cs42l73), GFP_KERNEL);
|
cs42l73 = devm_kzalloc(&i2c_client->dev, sizeof(struct cs42l73_private),
|
||||||
|
GFP_KERNEL);
|
||||||
if (!cs42l73) {
|
if (!cs42l73) {
|
||||||
dev_err(&i2c_client->dev, "could not allocate codec\n");
|
dev_err(&i2c_client->dev, "could not allocate codec\n");
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
|
@ -1394,8 +1395,6 @@ static __devinit int cs42l73_i2c_probe(struct i2c_client *i2c_client,
|
||||||
regmap_exit(cs42l73->regmap);
|
regmap_exit(cs42l73->regmap);
|
||||||
|
|
||||||
err:
|
err:
|
||||||
kfree(cs42l73);
|
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1406,7 +1405,6 @@ static __devexit int cs42l73_i2c_remove(struct i2c_client *client)
|
||||||
snd_soc_unregister_codec(&client->dev);
|
snd_soc_unregister_codec(&client->dev);
|
||||||
regmap_exit(cs42l73->regmap);
|
regmap_exit(cs42l73->regmap);
|
||||||
|
|
||||||
kfree(cs42l73);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue