pinctrl: Remove dev_err() usage after platform_get_irq()
authorStephen Boyd <swboyd@chromium.org>
Tue, 30 Jul 2019 18:15:33 +0000 (11:15 -0700)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 5 Aug 2019 11:24:06 +0000 (13:24 +0200)
We don't need dev_err() messages when platform_get_irq() fails now that
platform_get_irq() prints an error message itself when something goes
wrong. Let's remove these prints with a simple semantic patch.

// <smpl>
@@
expression ret;
struct platform_device *E;
@@

ret =
(
platform_get_irq(E, ...)
|
platform_get_irq_byname(E, ...)
);

if ( \( ret < 0 \| ret <= 0 \) )
{
(
-if (ret != -EPROBE_DEFER)
-{ ...
-dev_err(...);
-... }
|
...
-dev_err(...);
)
...
}
// </smpl>

While we're here, remove braces on if statements that only have one
statement (manually).

Cc: Linus Walleij <linus.walleij@linaro.org>
Cc: linux-gpio@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Stephen Boyd <swboyd@chromium.org>
Link: https://lore.kernel.org/r/20190730181557.90391-34-swboyd@chromium.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-amd.c
drivers/pinctrl/pinctrl-oxnas.c
drivers/pinctrl/pinctrl-pic32.c
drivers/pinctrl/pinctrl-stmfx.c
drivers/pinctrl/qcom/pinctrl-msm.c
drivers/pinctrl/qcom/pinctrl-ssbi-mpp.c

index 9b9c61e..60d88e1 100644 (file)
@@ -861,10 +861,8 @@ static int amd_gpio_probe(struct platform_device *pdev)
                return -ENOMEM;
 
        irq_base = platform_get_irq(pdev, 0);
-       if (irq_base < 0) {
-               dev_err(&pdev->dev, "Failed to get gpio IRQ: %d\n", irq_base);
+       if (irq_base < 0)
                return irq_base;
-       }
 
 #ifdef CONFIG_PM_SLEEP
        gpio_dev->saved_regs = devm_kcalloc(&pdev->dev, amd_pinctrl_desc.npins,
index fa81a09..55488ca 100644 (file)
@@ -1225,10 +1225,8 @@ static int oxnas_gpio_probe(struct platform_device *pdev)
                return PTR_ERR(bank->reg_base);
 
        irq = platform_get_irq(pdev, 0);
-       if (irq < 0) {
-               dev_err(&pdev->dev, "irq get failed\n");
+       if (irq < 0)
                return irq;
-       }
 
        bank->id = id;
        bank->gpio_chip.parent = &pdev->dev;
index 6dc98e2..e7f6dd5 100644 (file)
@@ -2222,10 +2222,8 @@ static int pic32_gpio_probe(struct platform_device *pdev)
                return PTR_ERR(bank->reg_base);
 
        irq = platform_get_irq(pdev, 0);
-       if (irq < 0) {
-               dev_err(&pdev->dev, "irq get failed\n");
+       if (irq < 0)
                return irq;
-       }
 
        bank->clk = devm_clk_get(&pdev->dev, NULL);
        if (IS_ERR(bank->clk)) {
index 31b6e51..d7e37b5 100644 (file)
@@ -608,10 +608,8 @@ static int stmfx_pinctrl_probe(struct platform_device *pdev)
        }
 
        irq = platform_get_irq(pdev, 0);
-       if (irq <= 0) {
-               dev_err(pctl->dev, "failed to get irq\n");
+       if (irq <= 0)
                return -ENXIO;
-       }
 
        mutex_init(&pctl->lock);
 
index 0d082ed..edecd65 100644 (file)
@@ -1158,10 +1158,8 @@ int msm_pinctrl_probe(struct platform_device *pdev,
        msm_pinctrl_setup_pm_reset(pctrl);
 
        pctrl->irq = platform_get_irq(pdev, 0);
-       if (pctrl->irq < 0) {
-               dev_err(&pdev->dev, "No interrupt defined for msmgpio\n");
+       if (pctrl->irq < 0)
                return pctrl->irq;
-       }
 
        pctrl->desc.owner = THIS_MODULE;
        pctrl->desc.pctlops = &msm_pinctrl_ops;
index 076ba08..3d8b1d7 100644 (file)
@@ -791,11 +791,8 @@ static int pm8xxx_mpp_probe(struct platform_device *pdev)
        for (i = 0; i < pctrl->desc.npins; i++) {
                pin_data[i].reg = SSBI_REG_ADDR_MPP(i);
                pin_data[i].irq = platform_get_irq(pdev, i);
-               if (pin_data[i].irq < 0) {
-                       dev_err(&pdev->dev,
-                               "missing interrupts for pin %d\n", i);
+               if (pin_data[i].irq < 0)
                        return pin_data[i].irq;
-               }
 
                ret = pm8xxx_pin_populate(pctrl, &pin_data[i]);
                if (ret)