From: Heinrich Schuchardt Date: Sat, 26 Nov 2022 15:32:25 +0000 (+0100) Subject: net: CONFIG_NET_DEVICES in dhcp_handler() X-Git-Tag: baikal/mips/sdk5.8.2~5^2~136^2~12 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=8429ddedf1d49b8fcdfac4428547fb72f9416552;p=uboot.git net: CONFIG_NET_DEVICES in dhcp_handler() The symbol CONFIG_NET_DEVICES does not exist. The correct name is CONFIG_NETDEVICES. Fixes: 8551b8e047ed ("efi_loader: Let networking support depend on NETDEVICES") Signed-off-by: Heinrich Schuchardt --- diff --git a/net/bootp.c b/net/bootp.c index 6c01e38153..7ac0093945 100644 --- a/net/bootp.c +++ b/net/bootp.c @@ -1078,7 +1078,7 @@ static void dhcp_handler(uchar *pkt, unsigned dest, struct in_addr sip, #endif /* CONFIG_SYS_BOOTFILE_PREFIX */ dhcp_packet_process_options(bp); if (CONFIG_IS_ENABLED(EFI_LOADER) && - CONFIG_IS_ENABLED(NET_DEVICES)) + CONFIG_IS_ENABLED(NETDEVICES)) efi_net_set_dhcp_ack(pkt, len); #if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)