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>
This commit is contained in:
Andy Shevchenko
2014-05-15 15:53:32 +03:00
committed by Felipe Balbi
parent 7419485f19
commit b09e99ee7c
5 changed files with 9 additions and 11 deletions

View File

@@ -393,7 +393,7 @@ static int dwc3_omap_probe(struct platform_device *pdev)
struct extcon_dev *edev;
struct regulator *vbus_reg = NULL;
int ret = -ENOMEM;
int ret;
int irq;
int utmi_mode = 0;