aboutsummaryrefslogtreecommitdiff
path: root/drivers/soc/ti
diff options
context:
space:
mode:
authorGravatar Qiheng Lin <linqiheng@huawei.com> 2021-06-04 13:04:06 -0700
committerGravatar Santosh Shilimkar <santosh.shilimkar@oracle.com> 2021-06-04 13:04:06 -0700
commita9c7d88d23ad244ba45397d7ba792d4ddf9643bf (patch)
tree9eaff08da6c801c9909ba0d2f00bdb7bce3296e6 /drivers/soc/ti
parentLinux 5.13-rc1 (diff)
downloadlinux-a9c7d88d23ad244ba45397d7ba792d4ddf9643bf.tar.gz
linux-a9c7d88d23ad244ba45397d7ba792d4ddf9643bf.tar.bz2
linux-a9c7d88d23ad244ba45397d7ba792d4ddf9643bf.zip
PM: AVS: remove redundant dev_err call in omap_sr_probe()
There is a error message within devm_ioremap_resource already, so remove the dev_err call to avoid redundant error message. Reported-by: Hulk Robot <hulkci@huawei.com> Reviewed-by: Nishanth Menon <nm@ti.com> Signed-off-by: Qiheng Lin <linqiheng@huawei.com> Signed-off-by: Santosh Shilimkar <santosh.shilimkar@oracle.com>
Diffstat (limited to 'drivers/soc/ti')
-rw-r--r--drivers/soc/ti/smartreflex.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/soc/ti/smartreflex.c b/drivers/soc/ti/smartreflex.c
index 5376f3d22f31..06cbee5fd254 100644
--- a/drivers/soc/ti/smartreflex.c
+++ b/drivers/soc/ti/smartreflex.c
@@ -846,10 +846,8 @@ static int omap_sr_probe(struct platform_device *pdev)
mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
sr_info->base = devm_ioremap_resource(&pdev->dev, mem);
- if (IS_ERR(sr_info->base)) {
- dev_err(&pdev->dev, "%s: ioremap fail\n", __func__);
+ if (IS_ERR(sr_info->base))
return PTR_ERR(sr_info->base);
- }
irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);