From: Ricardo Salveti Date: Thu, 4 Nov 2021 19:28:02 +0000 (-0300) Subject: xilinx: zynqmp: fix ZYNQMP_RESTORE_JTAG check X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=11c0255cd8a7177e2b714040efcfd51844cb5d8e;p=u-boot.git xilinx: zynqmp: fix ZYNQMP_RESTORE_JTAG check Config check should be done without the SPL_ prefix. Signed-off-by: Ricardo Salveti Reviewed-by: Oleksandr Suvorov Link: https://lore.kernel.org/r/20211104192802.3093811-1-ricardo@foundries.io Signed-off-by: Michal Simek --- diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c index dfb5dab7af..2b5239ccb4 100644 --- a/board/xilinx/zynqmp/zynqmp.c +++ b/board/xilinx/zynqmp/zynqmp.c @@ -394,7 +394,7 @@ int board_init(void) printf("Silicon version:\t%d\n", zynqmp_get_silicon_version()); /* the CSU disables the JTAG interface when secure boot is enabled */ - if (CONFIG_IS_ENABLED(SPL_ZYNQMP_RESTORE_JTAG)) + if (CONFIG_IS_ENABLED(ZYNQMP_RESTORE_JTAG)) restore_jtag(); #else if (CONFIG_IS_ENABLED(DM_I2C) && CONFIG_IS_ENABLED(I2C_EEPROM))