浏览代码

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>
Marek Vasut 9 年之前
父节点
当前提交
04f378798d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/usb/host/xhci-zynqmp.c

+ 1 - 1
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;
 }