This is an automated email from the ASF dual-hosted git repository.

hartmannathan pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git

commit 179d64d99919dd77b1ae43087d82361344e00126
Author: Sebastien Lorquet <sebast...@lorquet.fr>
AuthorDate: Tue Sep 6 15:39:49 2022 +0200

    stm32h7: SPI is no more experimental
---
 arch/arm/src/stm32h7/Kconfig | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/arch/arm/src/stm32h7/Kconfig b/arch/arm/src/stm32h7/Kconfig
index 8854ab0cb8..d22b2f92e0 100644
--- a/arch/arm/src/stm32h7/Kconfig
+++ b/arch/arm/src/stm32h7/Kconfig
@@ -655,42 +655,39 @@ menu "STM32H7 SPI Selection"
 config STM32H7_SPI1
        bool "SPI1"
        default n
-       depends on EXPERIMENTAL
        select SPI
        select STM32H7_SPI
 
 config STM32H7_SPI2
        bool "SPI2"
        default n
-       depends on EXPERIMENTAL
        select SPI
        select STM32H7_SPI
 
 config STM32H7_SPI3
        bool "SPI3"
        default n
-       depends on EXPERIMENTAL
        select SPI
        select STM32H7_SPI
 
 config STM32H7_SPI4
        bool "SPI4"
        default n
-       depends on STM32H7_HAVE_SPI4 && EXPERIMENTAL
+       depends on STM32H7_HAVE_SPI4
        select SPI
        select STM32H7_SPI
 
 config STM32H7_SPI5
        bool "SPI5"
        default n
-       depends on STM32H7_HAVE_SPI5 && EXPERIMENTAL
+       depends on STM32H7_HAVE_SPI5
        select SPI
        select STM32H7_SPI
 
 config STM32H7_SPI6
        bool "SPI6"
        default n
-       depends on STM32H7_HAVE_SPI6 && EXPERIMENTAL
+       depends on STM32H7_HAVE_SPI6
        select SPI
        select STM32H7_SPI
 

Reply via email to