power: supply: axp288_charger: Omit superfluous error message
authorTang Bin <tangbin@cmss.chinamobile.com>
Wed, 15 Apr 2020 04:27:27 +0000 (12:27 +0800)
committerSebastian Reichel <sre@kernel.org>
Tue, 28 Apr 2020 23:45:00 +0000 (01:45 +0200)
In the axp288_charger_probe(), when get irq failed, the function
platform_get_irq() logs an error message, so remove redundant
message here.

Signed-off-by: Tang Bin <tangbin@cmss.chinamobile.com>
Signed-off-by: Shengju Zhang <zhangshengju@cmss.chinamobile.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/axp288_charger.c

index cf4c67b..9d981b7 100644 (file)
@@ -880,10 +880,9 @@ static int axp288_charger_probe(struct platform_device *pdev)
        /* Register charger interrupts */
        for (i = 0; i < CHRG_INTR_END; i++) {
                pirq = platform_get_irq(info->pdev, i);
-               if (pirq < 0) {
-                       dev_err(&pdev->dev, "Failed to get IRQ: %d\n", pirq);
+               if (pirq < 0)
                        return pirq;
-               }
+
                info->irq[i] = regmap_irq_get_virq(info->regmap_irqc, pirq);
                if (info->irq[i] < 0) {
                        dev_warn(&info->pdev->dev,