From e6ee85a6891eca187c9a9364c51690d3f6a36932 Mon Sep 17 00:00:00 2001 From: Icenowy Zheng Date: Thu, 28 Sep 2017 22:16:38 +0800 Subject: 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 Signed-off-by: Maxime Ripard --- board/sunxi/board.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'board/sunxi') 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; } -- cgit v1.2.3