提交 f8593120 编写于 作者: A Alexander Stein 提交者: Neil Armstrong

drm/bridge: sii902x: Use dev_err_probe

This helps figuring out why the device probe is deferred.
Signed-off-by: NAlexander Stein <alexander.stein@ew.tq-group.com>
Reviewed-by: NAndrzej Hajda <andrzej.hajda@intel.com>
Signed-off-by: NNeil Armstrong <neil.armstrong@linaro.org>
Link: https://patchwork.freedesktop.org/patch/msgid/20230117105903.2068235-1-alexander.stein@ew.tq-group.com
上级 5688ca34
......@@ -1116,7 +1116,8 @@ static int sii902x_probe(struct i2c_client *client)
sii902x->next_bridge = of_drm_find_bridge(remote);
of_node_put(remote);
if (!sii902x->next_bridge)
return -EPROBE_DEFER;
return dev_err_probe(dev, -EPROBE_DEFER,
"Failed to find remote bridge\n");
}
mutex_init(&sii902x->mutex);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册