diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2014-05-15 08:53:32 -0400 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2014-05-15 11:26:21 -0400 |
commit | b09e99ee7c2b7ee80cca128b93b07fb830e6ecad (patch) | |
tree | c3ef26babf9053b0d4c41a620c4def8389e88e5c /drivers/usb/dwc3/core.c | |
parent | 7419485f197c436d41535df78ddea1085042d271 (diff) |
usb: dwc3: no need to initialize ret variable
First usage of ret variable will re-write initial value. Thus, there is no need
to initialize it.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'drivers/usb/dwc3/core.c')
-rw-r--r-- | drivers/usb/dwc3/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/dwc3/core.c b/drivers/usb/dwc3/core.c index af8c8f6e67b3..3f59c1247825 100644 --- a/drivers/usb/dwc3/core.c +++ b/drivers/usb/dwc3/core.c | |||
@@ -626,7 +626,7 @@ static int dwc3_probe(struct platform_device *pdev) | |||
626 | struct resource *res; | 626 | struct resource *res; |
627 | struct dwc3 *dwc; | 627 | struct dwc3 *dwc; |
628 | 628 | ||
629 | int ret = -ENOMEM; | 629 | int ret; |
630 | 630 | ||
631 | void __iomem *regs; | 631 | void __iomem *regs; |
632 | void *mem; | 632 | void *mem; |