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

Commit 1887ab2b authored by Nicolas Ferre's avatar Nicolas Ferre
Browse files

USB: ohci-at91: trivial return code name change

parent 0ee6d1ee
Loading
Loading
Loading
Loading
+3 −4
Original line number Diff line number Diff line
@@ -552,10 +552,9 @@ static int ohci_hcd_at91_drv_probe(struct platform_device *pdev)
	int			gpio;
	int			ret;

	i = ohci_at91_of_init(pdev);

	if (i)
		return i;
	ret = ohci_at91_of_init(pdev);
	if (ret)
		return ret;

	pdata = pdev->dev.platform_data;