Rockchip - Adjustin broken patch for EDGE kernel

This commit is contained in:
Igor Pecovnik
2025-04-20 14:29:17 +02:00
committed by Igor
parent dc41c7de51
commit 84447a0e7e

View File

@@ -218,8 +218,8 @@ index 38dded2baaf7..9e460b7e14a4 100644
if (IS_ERR(hdmi->phy)) {
ret = PTR_ERR(hdmi->phy);
if (ret != -EPROBE_DEFER)
- drm_err(hdmi, "failed to get phy\n");
+ drm_err(hdmi, "failed to get phy: %d\n", ret);
- dev_err(hdmi->dev, "failed to get phy\n");
+ dev_err(hdmi->dev, "failed to get phy: %d\n", ret);
return ret;
}