From: Simon Glass Date: Sun, 5 Feb 2023 22:44:20 +0000 (-0700) Subject: Correct SPL use of UDP_FUNCTION_FASTBOOT X-Git-Url: http://git.dujemihanovic.xyz/img/sics.gif?a=commitdiff_plain;h=942b309609b065c0a5e62868c0642414adc6b839;p=u-boot.git Correct SPL use of UDP_FUNCTION_FASTBOOT This converts 1 usage of this option to the non-SPL form, since there is no SPL_UDP_FUNCTION_FASTBOOT defined in Kconfig Signed-off-by: Simon Glass Reviewed-by: Mattijs Korpershoek --- diff --git a/cmd/fastboot.c b/cmd/fastboot.c index b94dbd5488..17c53bbe27 100644 --- a/cmd/fastboot.c +++ b/cmd/fastboot.c @@ -21,7 +21,7 @@ static int do_fastboot_udp(int argc, char *const argv[], { int err; - if (!CONFIG_IS_ENABLED(UDP_FUNCTION_FASTBOOT)) { + if (!IS_ENABLED(CONFIG_UDP_FUNCTION_FASTBOOT)) { pr_err("Fastboot UDP not enabled\n"); return CMD_RET_FAILURE; }