diff options
| author | Tom Rini <[email protected]> | 2021-10-15 10:54:41 -0400 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2021-10-21 07:39:05 +0200 |
| commit | 7609e02a25c4d5347146912380cf287a1dd5b300 (patch) | |
| tree | a9b5d1f605a928529e803186ea5c3a81e7093086 | |
| parent | aaddce0d35f5ec3f9dc021401c56081a3bd05ebd (diff) | |
arm: mvebu: Add missing "if SPL"
We can only select SPL_SKIP_LOWLEVEL_INIT if SPL is enabled, otherwise
we get a warning about unmet dependencies on platforms that don't use
SPL.
Fixes: cf47a8cf8f7e ("arm: mvebu: Select SPL_SKIP_LOWLEVEL_INIT on ARMADA_32BIT")
Cc: Stefan Roese <[email protected]>
Signed-off-by: Tom Rini <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
| -rw-r--r-- | arch/arm/mach-mvebu/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mvebu/Kconfig b/arch/arm/mach-mvebu/Kconfig index c66dab60123..d23cc0c760f 100644 --- a/arch/arm/mach-mvebu/Kconfig +++ b/arch/arm/mach-mvebu/Kconfig @@ -11,7 +11,7 @@ config ARMADA_32BIT select SPL_DM if SPL select SPL_DM_SEQ_ALIAS if SPL select SPL_OF_CONTROL if SPL - select SPL_SKIP_LOWLEVEL_INIT + select SPL_SKIP_LOWLEVEL_INIT if SPL select SPL_SIMPLE_BUS if SPL select SUPPORT_SPL select TRANSLATION_OFFSET |
