diff options
author | Marek Vasut <marex@denx.de> | 2015-11-30 18:10:09 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2015-12-07 00:14:59 +0100 |
commit | 04f378798d85f62beeb09db29a02785571514aeb (patch) | |
tree | e10090d3f219c363a5957504e705c2c62adff3ca /drivers/usb/host/xhci-zynqmp.c | |
parent | 7310ac4961c3a8793c1830c70137455409251605 (diff) |
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>
Diffstat (limited to 'drivers/usb/host/xhci-zynqmp.c')
-rw-r--r-- | drivers/usb/host/xhci-zynqmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/host/xhci-zynqmp.c b/drivers/usb/host/xhci-zynqmp.c index e76a0c6da2..530d97c792 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; } |