hwmon: (pc87427) remove unnecessary OOM messages
authorJingoo Han <jg1.han@samsung.com>
Tue, 29 Apr 2014 08:11:55 +0000 (17:11 +0900)
committerGuenter Roeck <linux@roeck-us.net>
Wed, 21 May 2014 23:02:22 +0000 (16:02 -0700)
The site-specific OOM messages are unnecessary, because they
duplicate the MM subsystem generic OOM message.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Acked-by: Jean Delvare <jdelvare@suse.de>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
drivers/hwmon/pc87427.c

index d847e0a084e0f605ed4f02cc7091a4caf4631617..9e4684e747eace17b2c6d00a84d5da33553ffd93 100644 (file)
@@ -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];