summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2015-11-30 17:10:09 (GMT)
committerMarek Vasut <marex@denx.de>2015-12-06 23:14:59 (GMT)
commit04f378798d85f62beeb09db29a02785571514aeb (patch)
treee10090d3f219c363a5957504e705c2c62adff3ca
parent7310ac4961c3a8793c1830c70137455409251605 (diff)
downloadu-boot-fsl-qoriq-04f378798d85f62beeb09db29a02785571514aeb.tar.xz
usb: zynqmp: Fix build warnings
The driver does "return 0" in function with void type. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Michal Simek <monstr@monstr.eu> Cc: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
-rw-r--r--drivers/usb/host/xhci-zynqmp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-zynqmp.c b/drivers/usb/host/xhci-zynqmp.c
index e76a0c6..530d97c 100644
--- a/drivers/usb/host/xhci-zynqmp.c
+++ b/drivers/usb/host/xhci-zynqmp.c
@@ -139,5 +139,5 @@ void xhci_hcd_stop(int index)
* sw. But this support may be added in future socs.
*/
- return 0;
+ return;
}