Browse Source

usb: host: xhci-tegra: Fix error return code in tegra_xusb_probe()

Fix to return error code -ENOMEM from the usb_create_shared_hcd()
error handling case instead of 0, as done elsewhere in this function.

Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Wei Yongjun 9 years ago
parent
commit
b175b38a0f
1 changed files with 1 additions and 0 deletions
  1. 1 0
      drivers/usb/host/xhci-tegra.c

+ 1 - 0
drivers/usb/host/xhci-tegra.c

@@ -1116,6 +1116,7 @@ static int tegra_xusb_probe(struct platform_device *pdev)
 						 tegra->hcd);
 						 tegra->hcd);
 	if (!xhci->shared_hcd) {
 	if (!xhci->shared_hcd) {
 		dev_err(&pdev->dev, "failed to create shared HCD\n");
 		dev_err(&pdev->dev, "failed to create shared HCD\n");
+		err = -ENOMEM;
 		goto remove_usb2;
 		goto remove_usb2;
 	}
 	}