From: Simon Glass Date: Wed, 22 Feb 2023 16:33:50 +0000 (-0700) Subject: Correct SPL use of PG_WCOM_UBOOT_UPDATE_SUPPORTED X-Git-Url: http://git.dujemihanovic.xyz/html/static/git-favicon.png?a=commitdiff_plain;h=cd3a35ef0bfa564c59c4113f3c3c0631bd04a3a9;p=u-boot.git Correct SPL use of PG_WCOM_UBOOT_UPDATE_SUPPORTED This converts 1 usage of this option to the non-SPL form, since there is no SPL_PG_WCOM_UBOOT_UPDATE_SUPPORTED defined in Kconfig Signed-off-by: Simon Glass Aleksandar Gerasimovski --- diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c index 8c282f9952..991022ac83 100644 --- a/board/keymile/common/common.c +++ b/board/keymile/common/common.c @@ -78,7 +78,7 @@ int set_km_env(void) return 0; } -#if CONFIG_IS_ENABLED(PG_WCOM_UBOOT_UPDATE_SUPPORTED) +#if IS_ENABLED(CONFIG_PG_WCOM_UBOOT_UPDATE_SUPPORTED) #if ((!IS_ENABLED(CONFIG_PG_WCOM_UBOOT_BOOTPACKAGE) && \ !IS_ENABLED(CONFIG_PG_WCOM_UBOOT_UPDATE)) || \ (IS_ENABLED(CONFIG_PG_WCOM_UBOOT_BOOTPACKAGE) && \