From: Jingoo Han Date: Tue, 29 Apr 2014 08:11:55 +0000 (+0900) Subject: hwmon: (pc87427) remove unnecessary OOM messages X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=2f89b072c9f845e8be746dcd9b14b7043c4f9a65;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git hwmon: (pc87427) remove unnecessary OOM messages The site-specific OOM messages are unnecessary, because they duplicate the MM subsystem generic OOM message. Signed-off-by: Jingoo Han Acked-by: Jean Delvare Signed-off-by: Guenter Roeck --- diff --git a/drivers/hwmon/pc87427.c b/drivers/hwmon/pc87427.c index d847e0a084e0..9e4684e747ea 100644 --- a/drivers/hwmon/pc87427.c +++ b/drivers/hwmon/pc87427.c @@ -1081,10 +1081,8 @@ static int pc87427_probe(struct platform_device *pdev) data = devm_kzalloc(&pdev->dev, sizeof(struct pc87427_data), GFP_KERNEL); - if (!data) { - pr_err("Out of memory\n"); + if (!data) return -ENOMEM; - } data->address[0] = sio_data->address[0]; data->address[1] = sio_data->address[1];