]> git.hungrycats.org Git - linux/commitdiff
ASoC: pxa: Drop redundant probe error messages
authorbui duc phuc <phucduc.bui@gmail.com>
Wed, 12 Aug 2026 08:43:11 +0000 (15:43 +0700)
committerMark Brown <broonie@kernel.org>
Wed, 12 Aug 2026 17:20:48 +0000 (18:20 +0100)
devm_platform_ioremap_resource() does not report the error itself,
but the error is already reported deeper in the call chain,
so the dev_err() calls are redundant and can be removed.

Signed-off-by: bui duc phuc <phucduc.bui@gmail.com>
Link: https://patch.msgid.link/20260812084311.29188-1-phucduc.bui@gmail.com
Signed-off-by: Mark Brown <broonie@kernel.org>
sound/soc/pxa/pxa2xx-ac97-lib.c

index d9c3935636da5fe807fed904ac50ab6585fefb14..d7f720431afb792d8f41abc199e7d493c874974c 100644 (file)
@@ -316,10 +316,8 @@ int pxa2xx_ac97_hw_probe(struct platform_device *dev)
        int irq;
 
        ac97_reg_base = devm_platform_ioremap_resource(dev, 0);
-       if (IS_ERR(ac97_reg_base)) {
-               dev_err(&dev->dev, "Missing MMIO resource\n");
+       if (IS_ERR(ac97_reg_base))
                return PTR_ERR(ac97_reg_base);
-       }
 
        if (cpu_is_pxa27x()) {
                /* Assert reset using GPIOD_OUT_HIGH, because reset is GPIO_ACTIVE_LOW */