diff options
| author | Ricardo Salveti <[email protected]> | 2021-11-04 16:28:02 -0300 |
|---|---|---|
| committer | Michal Simek <[email protected]> | 2021-11-15 15:59:33 +0100 |
| commit | 11c0255cd8a7177e2b714040efcfd51844cb5d8e (patch) | |
| tree | 70cd728b80ac2a9212996e22a4ad5a0e0bf39358 | |
| parent | 412ab133286af968732c2ff3cc2b615e078d8da1 (diff) | |
xilinx: zynqmp: fix ZYNQMP_RESTORE_JTAG check
Config check should be done without the SPL_ prefix.
Signed-off-by: Ricardo Salveti <[email protected]>
Reviewed-by: Oleksandr Suvorov <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Michal Simek <[email protected]>
| -rw-r--r-- | board/xilinx/zynqmp/zynqmp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/xilinx/zynqmp/zynqmp.c b/board/xilinx/zynqmp/zynqmp.c index dfb5dab7afa..2b5239ccb47 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)) |
