Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 168f6aa1 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "misc: liquid_dock: Defer probe until USB host is ready"

parents fd754c3d 5e36674d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -190,8 +190,8 @@ static int liquid_dock_probe(struct platform_device *pdev)
	}

	dock->usb3_pdev = of_find_device_by_node(usb3_node);
	if (!dock->usb3_pdev) {
		dev_err(dock->dev, "cannot find usb3_pdev\n");
	if (!dock->usb3_pdev || !dock->usb3_pdev->dev.driver) {
		dev_dbg(dock->dev, "usb pdev not ready\n");
		of_node_put(usb3_node);
		return -EPROBE_DEFER;
	}