git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d179f86
)
Correct SPL use of SYS_FSL_ERRATUM_A010539
author
Simon Glass
<sjg@chromium.org>
Sun, 5 Feb 2023 22:40:55 +0000
(15:40 -0700)
committer
Tom Rini
<trini@konsulko.com>
Fri, 10 Feb 2023 12:41:40 +0000
(07:41 -0500)
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>
arch/arm/cpu/armv8/fsl-layerscape/cpu.c
patch
|
blob
|
history
diff --git
a/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
b/arch/arm/cpu/armv8/fsl-layerscape/cpu.c
index
b0e8678
..
12d3118
100644
(file)
--- a/
arch/arm/cpu/armv8/fsl-layerscape/cpu.c
+++ b/
arch/arm/cpu/armv8/fsl-layerscape/cpu.c
@@
-760,7
+760,7
@@
enum boot_src __get_boot_src(u32 porsr1)
}
#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;
debug("%s: src 0x%x\n", __func__, src);