Skip to content

Commit e4c0fd3

Browse files
wb-zjp846396alyssarosenzweig
authored andcommitted
drm: adp: Remove unnecessary print function dev_err()
The print function dev_err() is redundant because platform_get_irq_byname() already prints an error. ./drivers/gpu/drm/adp/adp_drv.c:470:2-9: line 470 is redundant because platform_get_irq() already prints an error. ./drivers/gpu/drm/adp/adp_drv.c:476:2-9: line 476 is redundant because platform_get_irq() already prints an error. Reported-by: Abaci Robot <abaci@linux.alibaba.com> Closes: https://bugzilla.openanolis.cn/show_bug.cgi?id=19211 Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com> Acked-by: Sasha Finkelstein <fnkl.kernel@gmail.com> Link: https://patchwork.freedesktop.org/patch/msgid/20250305020546.96564-1-jiapeng.chong@linux.alibaba.com Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
1 parent 44d2f31 commit e4c0fd3

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

drivers/gpu/drm/adp/adp_drv.c

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -466,16 +466,12 @@ static int adp_parse_of(struct platform_device *pdev, struct adp_drv_private *ad
466466
}
467467

468468
adp->be_irq = platform_get_irq_byname(pdev, "be");
469-
if (adp->be_irq < 0) {
470-
dev_err(dev, "failed to find be irq");
469+
if (adp->be_irq < 0)
471470
return adp->be_irq;
472-
}
473471

474472
adp->fe_irq = platform_get_irq_byname(pdev, "fe");
475-
if (adp->fe_irq < 0) {
476-
dev_err(dev, "failed to find fe irq");
473+
if (adp->fe_irq < 0)
477474
return adp->fe_irq;
478-
}
479475

480476
return 0;
481477
}

0 commit comments

Comments
 (0)