pinctrl: adi2: Delete an error message for a failed memory allocation in two functions
Omit an extra message for a memory allocation failure in these functions. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring <elfring@users.sourceforge.net> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:
parent
cb1a42d5fa
commit
419517f15d
|
@ -830,10 +830,8 @@ static int adi_gpio_pint_probe(struct platform_device *pdev)
|
||||||
struct gpio_pint *pint;
|
struct gpio_pint *pint;
|
||||||
|
|
||||||
pint = devm_kzalloc(dev, sizeof(struct gpio_pint), GFP_KERNEL);
|
pint = devm_kzalloc(dev, sizeof(struct gpio_pint), GFP_KERNEL);
|
||||||
if (!pint) {
|
if (!pint)
|
||||||
dev_err(dev, "Memory alloc failed\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
pint->base = devm_ioremap_resource(dev, res);
|
pint->base = devm_ioremap_resource(dev, res);
|
||||||
|
@ -946,10 +944,8 @@ static int adi_gpio_probe(struct platform_device *pdev)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
port = devm_kzalloc(dev, sizeof(struct gpio_port), GFP_KERNEL);
|
port = devm_kzalloc(dev, sizeof(struct gpio_port), GFP_KERNEL);
|
||||||
if (!port) {
|
if (!port)
|
||||||
dev_err(dev, "Memory alloc failed\n");
|
|
||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
}
|
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
port->base = devm_ioremap_resource(dev, res);
|
port->base = devm_ioremap_resource(dev, res);
|
||||||
|
|
Loading…
Reference in New Issue