mirror of
https://github.com/torvalds/linux.git
synced 2026-05-29 17:43:52 +02:00
net: stmmac: Fix build error without CONFIG_INET
Fix gcc build error while CONFIG_INET is not set
drivers/net/ethernet/stmicro/stmmac/stmmac_selftests.o: In function `__stmmac_test_loopback':
stmmac_selftests.c:(.text+0x8ec): undefined reference to `ip_send_check'
stmmac_selftests.c:(.text+0xacc): undefined reference to `udp4_hwcsum'
Add CONFIG_INET dependency to fix this.
Reported-by: Hulk Robot <hulkci@huawei.com>
Fixes: 091810dbde ("net: stmmac: Introduce selftests support")
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
279758f800
commit
a3e2f6ad89
|
|
@ -15,6 +15,7 @@ if STMMAC_ETH
|
|||
|
||||
config STMMAC_SELFTESTS
|
||||
bool "Support for STMMAC Selftests"
|
||||
depends on INET
|
||||
depends on STMMAC_ETH
|
||||
default n
|
||||
---help---
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user