Skip to content

Commit

Permalink
hal_stm32: rename HAS_STLIB in HAS_STM32LIB
Browse files Browse the repository at this point in the history
Both modules ST and STM32 use the same HAS_STLIB Kconfig symbol.
This is not coherent, so rename the one used in stm32 module
as HAS_STM32LIB

Signed-off-by: Erwan Gouriou <erwan.gouriou@linaro.org>
  • Loading branch information
erwango authored and galak committed May 8, 2020
1 parent ff9b7f2 commit d1bc80d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
add_subdirectory_ifdef(CONFIG_HAS_STM32CUBE stm32cube)
add_subdirectory_ifdef(CONFIG_HAS_STLIB lib)
add_subdirectory_ifdef(CONFIG_HAS_STM32LIB lib)
2 changes: 1 addition & 1 deletion lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# SPDX-License-Identifier: Apache-2.0

if(CONFIG_HAS_STLIB)
if(CONFIG_HAS_STM32LIB)
if(CONFIG_BT_STM32_IPM)
zephyr_include_directories(stm32wb/hci)
zephyr_sources(stm32wb/hci/shci.c)
Expand Down

0 comments on commit d1bc80d

Please sign in to comment.