From: Simon Glass Date: Sun, 5 Feb 2023 22:40:20 +0000 (-0700) Subject: Correct SPL use of NETDEVICES X-Git-Tag: v2023.07~163^2~54 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f00d58010de5cc79511cffaebb52eb90b31e2293;p=platform%2Fkernel%2Fu-boot.git Correct SPL use of NETDEVICES This converts 1 usage of this option to the non-SPL form, since there is no SPL_NETDEVICES defined in Kconfig Signed-off-by: Simon Glass --- diff --git a/net/bootp.c b/net/bootp.c index cae0419..8b1a4ae 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(NETDEVICES)) + IS_ENABLED(CONFIG_NETDEVICES)) efi_net_set_dhcp_ack(pkt, len); #if defined(CONFIG_SERVERIP_FROM_PROXYDHCP)