projects
/
oweals
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7310ac4
)
usb: zynqmp: Fix build warnings
author
Marek Vasut
<marex@denx.de>
Mon, 30 Nov 2015 17:10:09 +0000
(18:10 +0100)
committer
Marek 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
patch
|
blob
|
history
diff --git
a/drivers/usb/host/xhci-zynqmp.c
b/drivers/usb/host/xhci-zynqmp.c
index e76a0c6da28194d255c6d72ffae19f6e9ace924e..530d97c792f5b340c22fe52c7e1cb1e256539366 100644
(file)
--- 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;
}