We should return -ENOMEM if the kzalloc() fails instead of returning -ENOMEM. Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx> diff --git a/sound/soc/codecs/wm0010.c b/sound/soc/codecs/wm0010.c index 71ce315..8dac6c5 100644 --- a/sound/soc/codecs/wm0010.c +++ b/sound/soc/codecs/wm0010.c @@ -682,6 +682,7 @@ static int wm0010_boot(struct snd_soc_codec *codec) if (!img_swap) { dev_err(codec->dev, "Failed to allocate image buffer\n"); + ret = -ENOMEM; goto abort; } -- To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html