Merge "disp: msm: dsi: add return code to probe deferral error logs"

这个提交包含在:
qctecmdr
2020-04-10 09:39:57 -07:00
提交者 Gerrit - the friendly Code Review server
当前提交 25062d1965
修改 3 个文件,包含 6 行新增3 行删除

查看文件

@@ -1991,7 +1991,8 @@ struct dsi_ctrl *dsi_ctrl_get(struct device_node *of_node)
mutex_unlock(&dsi_ctrl_list_lock);
if (!ctrl) {
DSI_CTRL_ERR(ctrl, "Device with of node not found\n");
DSI_CTRL_ERR(ctrl, "Device with of node not found rc=%d\n",
-EPROBE_DEFER);
ctrl = ERR_PTR(-EPROBE_DEFER);
return ctrl;
}