mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-25 23:06:15 +00:00
Correct SPL use of SYS_FSL_ERRATUM_A010539
This converts 1 usage of this option to the non-SPL form, since there is no SPL_SYS_FSL_ERRATUM_A010539 defined in Kconfig Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
d179f865bf
commit
e7ec875dd1
1 changed files with 1 additions and 1 deletions
|
@ -760,7 +760,7 @@ enum boot_src __get_boot_src(u32 porsr1)
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
if (CONFIG_IS_ENABLED(SYS_FSL_ERRATUM_A010539) && !rcw_src)
|
if (IS_ENABLED(CONFIG_SYS_FSL_ERRATUM_A010539) && !rcw_src)
|
||||||
src = BOOT_SOURCE_QSPI_NOR;
|
src = BOOT_SOURCE_QSPI_NOR;
|
||||||
|
|
||||||
debug("%s: src 0x%x\n", __func__, src);
|
debug("%s: src 0x%x\n", __func__, src);
|
||||||
|
|
Loading…
Add table
Reference in a new issue