projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f67676
)
usb: host: xhci-omap: fix build break
author
Felipe Balbi
<balbi@ti.com>
Thu, 1 Oct 2015 19:22:17 +0000
(14:22 -0500)
committer
Marek Vasut
<marex@denx.de>
Sun, 6 Dec 2015 23:14:59 +0000
(
00:14
+0100)
Fix the following build break:
drivers/usb/host/xhci-omap.c:35:5: error: ‘board_usb_init’ aliased to external symbol ‘__board_usb_init’
int board_usb_init(int index, enum usb_init_type init)
^
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/host/xhci-omap.c
patch
|
blob
|
history
diff --git
a/drivers/usb/host/xhci-omap.c
b/drivers/usb/host/xhci-omap.c
index 104e7a7282cf0b7787afac90ab5f8d1a7c55bfe2..fd19f79f0fc5f2b2b4c7b9a0da5208d5e07deb5b 100644
(file)
--- a/
drivers/usb/host/xhci-omap.c
+++ b/
drivers/usb/host/xhci-omap.c
@@
-27,7
+27,7
@@
DECLARE_GLOBAL_DATA_PTR;
static struct omap_xhci omap;
-
inline
int __board_usb_init(int index, enum usb_init_type init)
+
__weak
int __board_usb_init(int index, enum usb_init_type init)
{
return 0;
}