All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] usb: zynqmp: Fix build warnings
@ 2015-11-30 17:19 Marek Vasut
  0 siblings, 0 replies; only message in thread
From: Marek Vasut @ 2015-11-30 17:19 UTC (permalink / raw)
  To: u-boot

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 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
 }
-- 
2.1.4

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-11-30 17:19 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-30 17:19 [U-Boot] [PATCH] usb: zynqmp: Fix build warnings Marek Vasut

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.