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

Commit 9c6d196d authored by Fabio Porcedda's avatar Fabio Porcedda Committed by Felipe Balbi
Browse files

usb: gadget: at91_udc: fix dt support



Don't fail the initialization check for the platform_data
if there is avaiable an associated device tree node.

Signed-off-by: default avatarFabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent 162ca3ca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1704,7 +1704,7 @@ static int __devinit at91udc_probe(struct platform_device *pdev)
	int		retval;
	struct resource	*res;

	if (!dev->platform_data) {
	if (!dev->platform_data && !pdev->dev.of_node) {
		/* small (so we copy it) but critical! */
		DBG("missing platform_data\n");
		return -ENODEV;