Skip to content

Commit

Permalink
disable defered probe timeout for now
Browse files Browse the repository at this point in the history
dispcc has a tendency to not probe in time, failing the entire display
stack

Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
  • Loading branch information
andersson authored and qzed committed Jun 24, 2022
1 parent d3b8341 commit 6d1214e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions drivers/base/dd.c
Original file line number Diff line number Diff line change
Expand Up @@ -289,10 +289,10 @@ int driver_deferred_probe_check_state(struct device *dev)
return -ENODEV;
}

if (!driver_deferred_probe_timeout && initcalls_done) {
dev_warn(dev, "deferred probe timeout, ignoring dependency\n");
return -ETIMEDOUT;
}
// if (!driver_deferred_probe_timeout && initcalls_done) {
// dev_warn(dev, "deferred probe timeout, ignoring dependency\n");
// return -ETIMEDOUT;
// }

return -EPROBE_DEFER;
}
Expand Down

0 comments on commit 6d1214e

Please sign in to comment.