pinctrl: tegra: Delete two error messages for a failed memory allocation in tegra_pin...
authorMarkus Elfring <elfring@users.sourceforge.net>
Thu, 28 Dec 2017 14:15:08 +0000 (15:15 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Wed, 3 Jan 2018 07:46:55 +0000 (08:46 +0100)
Omit extra messages for a memory allocation failure in this function.

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>
drivers/pinctrl/tegra/pinctrl-tegra.c

index 51716819129d2106adff66086fc824fa0dbe09e6..72c718e66ebb11fa5074a7e8d476a3787aee2025 100644 (file)
@@ -666,10 +666,9 @@ int tegra_pinctrl_probe(struct platform_device *pdev,
        int fn, gn, gfn;
 
        pmx = devm_kzalloc(&pdev->dev, sizeof(*pmx), GFP_KERNEL);
-       if (!pmx) {
-               dev_err(&pdev->dev, "Can't alloc tegra_pmx\n");
+       if (!pmx)
                return -ENOMEM;
-       }
+
        pmx->dev = &pdev->dev;
        pmx->soc = soc_data;
 
@@ -722,10 +721,8 @@ int tegra_pinctrl_probe(struct platform_device *pdev,
 
        pmx->regs = devm_kzalloc(&pdev->dev, pmx->nbanks * sizeof(*pmx->regs),
                                 GFP_KERNEL);
-       if (!pmx->regs) {
-               dev_err(&pdev->dev, "Can't alloc regs pointer\n");
+       if (!pmx->regs)
                return -ENOMEM;
-       }
 
        for (i = 0; i < pmx->nbanks; i++) {
                res = platform_get_resource(pdev, IORESOURCE_MEM, i);