drm: bridge: adv7511: use dev_err_probe in probe function
authorAhmad Fatoum <a.fatoum@pengutronix.de>
Wed, 26 Oct 2022 12:52:46 +0000 (14:52 +0200)
committerNeil Armstrong <neil.armstrong@linaro.org>
Fri, 28 Oct 2022 14:26:12 +0000 (16:26 +0200)
commit2a865248399a13bb2b2bcc50297069a7521de258
tree8d84234aa560080e013685ebe92ce131a47af7b2
parentfc04142894d1d970e21c6ab3ab663aa51c5a8b7b
drm: bridge: adv7511: use dev_err_probe in probe function

adv7511 probe may need to be attempted multiple times before no
-EPROBE_DEFER is returned. Currently, every such probe results in
an error message:

[    4.534229] adv7511 1-003d: failed to find dsi host
[    4.580288] adv7511 1-003d: failed to find dsi host

This is misleading, as there is no error and probe deferral is normal
behavior. Fix this by using dev_err_probe that will suppress
-EPROBE_DEFER errors. While at it, we touch all dev_err in the probe
path. This makes the code more concise and included the error code
everywhere to aid user in debugging.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20221026125246.3188260-1-a.fatoum@pengutronix.de
drivers/gpu/drm/bridge/adv7511/adv7511_drv.c
drivers/gpu/drm/bridge/adv7511/adv7533.c