gpio: SPEAr: remove unnecessary OOM messages
authorJingoo Han <jg1.han@samsung.com>
Tue, 29 Apr 2014 08:42:56 +0000 (17:42 +0900)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 9 May 2014 08:55:19 +0000 (10:55 +0200)
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: Viresh Kumar <viresh.kumar@linaro.org>
Reviewed-by: Javier Martinez Canillas <javier@dowhile0.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-spear-spics.c

index 30bcc53..353263c 100644 (file)
@@ -129,10 +129,8 @@ static int spics_gpio_probe(struct platform_device *pdev)
        int ret;
 
        spics = devm_kzalloc(&pdev->dev, sizeof(*spics), GFP_KERNEL);
-       if (!spics) {
-               dev_err(&pdev->dev, "memory allocation fail\n");
+       if (!spics)
                return -ENOMEM;
-       }
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        spics->base = devm_ioremap_resource(&pdev->dev, res);