aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-palmas.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-04-29 17:39:07 +0900
committerLinus Walleij <linus.walleij@linaro.org>2014-05-09 10:55:03 +0200
commit5605beb29b454a0aac59fb1e3d903080ee60cb49 (patch)
treee76ac6167def12119b8573543a506e45ade20bb8 /drivers/gpio/gpio-palmas.c
parentgpio: mvebu: remove unnecessary OOM messages (diff)
downloadlinux-dev-5605beb29b454a0aac59fb1e3d903080ee60cb49.tar.xz
linux-dev-5605beb29b454a0aac59fb1e3d903080ee60cb49.zip
gpio: palmas: 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> Reviewed-by: Javier Martinez Canillas <javier@dowhile0.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-palmas.c')
-rw-r--r--drivers/gpio/gpio-palmas.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-palmas.c b/drivers/gpio/gpio-palmas.c
index da9d33252e56..a5ec6022e789 100644
--- a/drivers/gpio/gpio-palmas.c
+++ b/drivers/gpio/gpio-palmas.c
@@ -173,10 +173,8 @@ static int palmas_gpio_probe(struct platform_device *pdev)
palmas_gpio = devm_kzalloc(&pdev->dev,
sizeof(*palmas_gpio), GFP_KERNEL);
- if (!palmas_gpio) {
- dev_err(&pdev->dev, "Could not allocate palmas_gpio\n");
+ if (!palmas_gpio)
return -ENOMEM;
- }
palmas_gpio->palmas = palmas;
palmas_gpio->gpio_chip.owner = THIS_MODULE;