From: Marek Vasut Date: Mon, 30 Nov 2015 17:10:09 +0000 (+0100) Subject: usb: zynqmp: Fix build warnings X-Git-Tag: v2016.01-rc2~5^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=04f378798d85f62beeb09db29a02785571514aeb;p=oweals%2Fu-boot.git usb: zynqmp: Fix build warnings The driver does "return 0" in function with void type. Signed-off-by: Marek Vasut Cc: Michal Simek Cc: Siva Durga Prasad Paladugu --- 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; }