From 780d9facbe90a812ae2ac44a71f06bd7da02eccb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20B=C3=B8e?= Date: Wed, 15 Nov 2017 09:50:28 +0100 Subject: [PATCH] cmake: s/CONFIG_I2C_STM32_V1x/CONFIG_I2C_STM32_V1/ Fix typo in build scripts for STM's I2C driver. The typo was introduced in the cmake migration. Discovered by Dmitry: https://lists.zephyrproject.org/pipermail/zephyr-devel/2017-November/008383.html Signed-off-by: Sebastian Boe --- drivers/i2c/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/i2c/CMakeLists.txt b/drivers/i2c/CMakeLists.txt index 3a544930fc4..8f8fb67d1bc 100644 --- a/drivers/i2c/CMakeLists.txt +++ b/drivers/i2c/CMakeLists.txt @@ -10,7 +10,7 @@ zephyr_sources_ifdef(CONFIG_I2C_QMSI_SS i2c_qmsi_ss.c) zephyr_sources_ifdef(CONFIG_I2C_SAM_TWI i2c_sam_twi.c) zephyr_sources_ifdef(CONFIG_I2C_SBCON i2c_sbcon.c) -zephyr_sources_ifdef(CONFIG_I2C_STM32_V1x +zephyr_sources_ifdef(CONFIG_I2C_STM32_V1 i2c_ll_stm32_v1.c i2c_ll_stm32.c )