diff options
-rw-r--r-- | sound/soc/codecs/ak4642.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sound/soc/codecs/ak4642.c b/sound/soc/codecs/ak4642.c index 60b83b482467..3d7dc55305ec 100644 --- a/sound/soc/codecs/ak4642.c +++ b/sound/soc/codecs/ak4642.c | |||
@@ -498,8 +498,10 @@ static int ak4642_i2c_probe(struct i2c_client *i2c, | |||
498 | codec->control_data = i2c; | 498 | codec->control_data = i2c; |
499 | 499 | ||
500 | ret = ak4642_init(ak4642); | 500 | ret = ak4642_init(ak4642); |
501 | if (ret < 0) | 501 | if (ret < 0) { |
502 | printk(KERN_ERR "failed to initialise AK4642\n"); | 502 | printk(KERN_ERR "failed to initialise AK4642\n"); |
503 | kfree(ak4642); | ||
504 | } | ||
503 | 505 | ||
504 | return ret; | 506 | return ret; |
505 | } | 507 | } |