]> git.ipfire.org Git - people/ms/u-boot.git/commitdiff
usb: zynqmp: Fix build warnings
authorMarek Vasut <marex@denx.de>
Mon, 30 Nov 2015 17:10:09 +0000 (18:10 +0100)
committerMarek Vasut <marex@denx.de>
Sun, 6 Dec 2015 23:14:59 +0000 (00:14 +0100)
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>
drivers/usb/host/xhci-zynqmp.c

index e76a0c6da28194d255c6d72ffae19f6e9ace924e..530d97c792f5b340c22fe52c7e1cb1e256539366 100644 (file)
@@ -139,5 +139,5 @@ void xhci_hcd_stop(int index)
         * sw. But this support may be added in future socs.
         */
 
-       return 0;
+       return;
 }