drm/bridge: analogix_dp: modify the log related to the check of hpd status

The disconnected status is not actually a failure, so it is more
reasonable to remove 'failed' and use dev_dbg() instead of dev_err().

Change-Id: I6c2fea479b45e6c61ce460d364efe8f3053465e2
Signed-off-by: Damon Ding <damon.ding@rock-chips.com>
This commit is contained in:
Damon Ding
2025-01-03 09:58:10 +08:00
committed by Tao Huang
parent 61fc6ee91f
commit 0e51e09b71

View File

@@ -178,7 +178,7 @@ static int analogix_dp_detect_hpd(struct analogix_dp_device *dp)
analogix_dp_force_hpd(dp);
if (analogix_dp_get_plug_in_status(dp) != 0) {
dev_err(dp->dev, "failed to get hpd plug in status\n");
dev_dbg(dp->dev, "hpd status is detected as disconnected\n");
return -EINVAL;
}