ASoC: wl1273: Remove redundant OOM message

Let memory subsystem handle the error logging.

Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
This commit is contained in:
Sachin Kamat 2014-06-20 15:29:04 +05:30 коммит произвёл Mark Brown
Родитель 04cc41a809
Коммит ac872d3d72
1 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -461,10 +461,8 @@ static int wl1273_probe(struct snd_soc_codec *codec)
} }
wl1273 = kzalloc(sizeof(struct wl1273_priv), GFP_KERNEL); wl1273 = kzalloc(sizeof(struct wl1273_priv), GFP_KERNEL);
if (wl1273 == NULL) { if (!wl1273)
dev_err(codec->dev, "Cannot allocate memory.\n");
return -ENOMEM; return -ENOMEM;
}
wl1273->mode = WL1273_MODE_BT; wl1273->mode = WL1273_MODE_BT;
wl1273->core = *core; wl1273->core = *core;