summaryrefslogtreecommitdiff
path: root/board/sunxi
diff options
context:
space:
mode:
authorIcenowy Zheng <icenowy@aosc.io>2017-09-28 22:16:38 +0800
committerMaxime Ripard <maxime.ripard@free-electrons.com>2017-10-03 19:12:06 +0200
commite6ee85a6891eca187c9a9364c51690d3f6a36932 (patch)
treebaea81be43044407ba36b6d9a92de2a8c4f06e61 /board/sunxi
parent9f35688349cf019ce4f85c81d7ec1a34d865dcc4 (diff)
sunxi: only init USB Ethernet gadget when it's enabled
If the USB Ethernet gadget is not yet enabled, the call of usb_ether_init in board/sunxi/board.c will lead to undefined reference error when building. Fix this problem. Fixes: 50ddbf1199a0 ("sunxi: Register usb_ether") Signed-off-by: Icenowy Zheng <icenowy@aosc.io> Signed-off-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Diffstat (limited to 'board/sunxi')
-rw-r--r--board/sunxi/board.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/board/sunxi/board.c b/board/sunxi/board.c
index cb42742dd2..6e13ee32c1 100644
--- a/board/sunxi/board.c
+++ b/board/sunxi/board.c
@@ -733,7 +733,9 @@ int misc_init_r(void)
return ret;
#endif
+#ifdef CONFIG_USB_ETHER
usb_ether_init();
+#endif
return 0;
}