aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-rdc321x.c
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2014-04-29 04:42:04 -0400
committerLinus Walleij <linus.walleij@linaro.org>2014-05-09 04:55:15 -0400
commit84e27f97ea46de21a78ffeb230a5a0de83f664f3 (patch)
tree7eb02e4d8cf7ccca6ae8c728eb260ad9bf86e75a /drivers/gpio/gpio-rdc321x.c
parent41893360afb9d49181ce9714286de61ee50c48b0 (diff)
gpio: rdc321x: 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-rdc321x.c')
-rw-r--r--drivers/gpio/gpio-rdc321x.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/gpio/gpio-rdc321x.c b/drivers/gpio/gpio-rdc321x.c
index 7a319e5138a5..9fa7e53331c9 100644
--- a/drivers/gpio/gpio-rdc321x.c
+++ b/drivers/gpio/gpio-rdc321x.c
@@ -143,10 +143,8 @@ static int rdc321x_gpio_probe(struct platform_device *pdev)
143 143
144 rdc321x_gpio_dev = devm_kzalloc(&pdev->dev, sizeof(struct rdc321x_gpio), 144 rdc321x_gpio_dev = devm_kzalloc(&pdev->dev, sizeof(struct rdc321x_gpio),
145 GFP_KERNEL); 145 GFP_KERNEL);
146 if (!rdc321x_gpio_dev) { 146 if (!rdc321x_gpio_dev)
147 dev_err(&pdev->dev, "failed to allocate private data\n");
148 return -ENOMEM; 147 return -ENOMEM;
149 }
150 148
151 r = platform_get_resource_byname(pdev, IORESOURCE_IO, "gpio-reg1"); 149 r = platform_get_resource_byname(pdev, IORESOURCE_IO, "gpio-reg1");
152 if (!r) { 150 if (!r) {