diff options
author | Fabio Porcedda <fabio.porcedda@gmail.com> | 2012-09-07 09:27:42 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2012-09-10 09:20:26 -0400 |
commit | 9c6d196d5aa35e07482f23c3e37755e7a82140e0 (patch) | |
tree | b65b16054301550f1883b6bfe2b65273aa54d946 /drivers/usb/gadget | |
parent | 162ca3ca613e02e115ec9c5273f94bd22dad0af2 (diff) |
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: Fabio Porcedda <fabio.porcedda@gmail.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/gadget')
-rw-r--r-- | drivers/usb/gadget/at91_udc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/at91_udc.c b/drivers/usb/gadget/at91_udc.c index d95f6b079345..af931282843d 100644 --- a/drivers/usb/gadget/at91_udc.c +++ b/drivers/usb/gadget/at91_udc.c | |||
@@ -1704,7 +1704,7 @@ static int __devinit at91udc_probe(struct platform_device *pdev) | |||
1704 | int retval; | 1704 | int retval; |
1705 | struct resource *res; | 1705 | struct resource *res; |
1706 | 1706 | ||
1707 | if (!dev->platform_data) { | 1707 | if (!dev->platform_data && !pdev->dev.of_node) { |
1708 | /* small (so we copy it) but critical! */ | 1708 | /* small (so we copy it) but critical! */ |
1709 | DBG("missing platform_data\n"); | 1709 | DBG("missing platform_data\n"); |
1710 | return -ENODEV; | 1710 | return -ENODEV; |