diff options
author | Nicolas Ferre <nicolas.ferre@atmel.com> | 2012-03-28 05:49:01 -0400 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2012-04-04 12:35:33 -0400 |
commit | 1887ab2bf236596a5ac7c0e7a90127b468c24081 (patch) | |
tree | 150179239b33cbf07e969d2170f088df34d1fa54 /drivers/usb/host/ohci-at91.c | |
parent | 0ee6d1eeef7bf4e08aba37bf1da377b25e8d853a (diff) |
USB: ohci-at91: trivial return code name change
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Acked-by: Alan Stern <stern@rowland.harvard.edu>
Diffstat (limited to 'drivers/usb/host/ohci-at91.c')
-rw-r--r-- | drivers/usb/host/ohci-at91.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/usb/host/ohci-at91.c b/drivers/usb/host/ohci-at91.c index 7cf4797a601e..09f597ad6e00 100644 --- a/drivers/usb/host/ohci-at91.c +++ b/drivers/usb/host/ohci-at91.c | |||
@@ -552,10 +552,9 @@ static int ohci_hcd_at91_drv_probe(struct platform_device *pdev) | |||
552 | int gpio; | 552 | int gpio; |
553 | int ret; | 553 | int ret; |
554 | 554 | ||
555 | i = ohci_at91_of_init(pdev); | 555 | ret = ohci_at91_of_init(pdev); |
556 | 556 | if (ret) | |
557 | if (i) | 557 | return ret; |
558 | return i; | ||
559 | 558 | ||
560 | pdata = pdev->dev.platform_data; | 559 | pdata = pdev->dev.platform_data; |
561 | 560 | ||