1
0
Fork 0

ASoC: wm2000: Remove redundant OOM message

Let memory subsystem handle the error logging.

Signed-off-by: Sachin Kamat <sachin.kamat@samsung.com>
Acked-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
hifive-unleashed-5.1
Sachin Kamat 2014-06-20 15:29:07 +05:30 committed by Mark Brown
parent 611d7a7ba8
commit a0f62118b7
1 changed files with 1 additions and 3 deletions

View File

@ -826,10 +826,8 @@ static int wm2000_i2c_probe(struct i2c_client *i2c,
wm2000 = devm_kzalloc(&i2c->dev, sizeof(struct wm2000_priv),
GFP_KERNEL);
if (wm2000 == NULL) {
dev_err(&i2c->dev, "Unable to allocate private data\n");
if (!wm2000)
return -ENOMEM;
}
mutex_init(&wm2000->lock);