diff options
author | Jingoo Han <jg1.han@samsung.com> | 2014-04-29 17:40:59 +0900 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2014-05-09 10:55:11 +0200 |
commit | 41893360afb9d49181ce9714286de61ee50c48b0 (patch) | |
tree | 92383e65179951ff23471a2c9b2e90a327ae9755 | |
parent | 4b7dfd7f6f1ac7898cd2c0fa9b490e35b2f4beac (diff) | |
download | op-kernel-dev-41893360afb9d49181ce9714286de61ee50c48b0.zip op-kernel-dev-41893360afb9d49181ce9714286de61ee50c48b0.tar.gz |
gpio: rcar: 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 <jg1.han@samsung.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Javier Martinez Canillas <javier@dowhile0.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r-- | drivers/gpio/gpio-rcar.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-rcar.c b/drivers/gpio/gpio-rcar.c index bfcfeee..0c9f803 100644 --- a/drivers/gpio/gpio-rcar.c +++ b/drivers/gpio/gpio-rcar.c @@ -363,7 +363,6 @@ static int gpio_rcar_probe(struct platform_device *pdev) p = devm_kzalloc(dev, sizeof(*p), GFP_KERNEL); if (!p) { - dev_err(dev, "failed to allocate driver data\n"); ret = -ENOMEM; goto err0; } |