hwmon: (max6650) Drop error message after memory allocation failures

The core code already generates an error message.

Reviewed-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
This commit is contained in:
Guenter Roeck 2014-02-11 22:40:33 -08:00
Родитель 17eaa25c3e
Коммит 0b5e33b632
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -656,10 +656,8 @@ static int max6650_probe(struct i2c_client *client,
data = devm_kzalloc(&client->dev, sizeof(struct max6650_data),
GFP_KERNEL);
if (!data) {
dev_err(&client->dev, "out of memory.\n");
if (!data)
return -ENOMEM;
}
data->client = client;
mutex_init(&data->update_lock);