drm: rcar-du: Skip disabled outputs
When a DT node connected to a DU output is disabled no bridge will ever be instantiated for it. Skip the output in that case. Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
This commit is contained in:
parent
40d0fa7095
commit
4739a0d40b
1 changed files with 7 additions and 0 deletions
|
@ -302,6 +302,13 @@ static int rcar_du_encoders_init_one(struct rcar_du_device *rcdu,
|
|||
return -ENODEV;
|
||||
}
|
||||
|
||||
if (!of_device_is_available(entity)) {
|
||||
dev_dbg(rcdu->dev,
|
||||
"connected entity %s is disabled, skipping\n",
|
||||
entity->full_name);
|
||||
return -ENODEV;
|
||||
}
|
||||
|
||||
entity_ep_node = of_parse_phandle(ep->local_node, "remote-endpoint", 0);
|
||||
|
||||
for_each_endpoint_of_node(entity, ep_node) {
|
||||
|
|
Loading…
Reference in a new issue