Skip to content

Commit ba17c5b

Browse files
Pharbmarekmatej
authored andcommitted
zephyr: fix temperature_sensor_periph.c path
Fix double slash in sources path. Signed-off-by: Patrick Harböck <[email protected]>
1 parent 1892bfe commit ba17c5b

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

zephyr/esp32c2/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ if(CONFIG_SOC_SERIES_ESP32C2)
293293
zephyr_sources_ifdef(
294294
CONFIG_ESP32_TEMP
295295
../../components/driver/deprecated/rtc_temperature_legacy.c
296-
../../components/soc//${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
296+
../../components/soc/${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
297297
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_rtc_calib.c
298298
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_table.c
299299
../../components/efuse/src/esp_efuse_api.c

zephyr/esp32c3/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ if(CONFIG_SOC_SERIES_ESP32C3)
214214
zephyr_sources_ifdef(
215215
CONFIG_ESP32_TEMP
216216
../../components/driver/deprecated/rtc_temperature_legacy.c
217-
../../components/soc//${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
217+
../../components/soc/${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
218218
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_rtc_calib.c
219219
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_table.c
220220
../../components/efuse/src/esp_efuse_api.c

zephyr/esp32s2/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ if(CONFIG_SOC_SERIES_ESP32S2)
255255
zephyr_sources_ifdef(
256256
CONFIG_ESP32_TEMP
257257
../../components/driver/deprecated/rtc_temperature_legacy.c
258-
../../components/soc//${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
258+
../../components/soc/${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
259259
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_rtc_calib.c
260260
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_rtc_table.c
261261
../../components/efuse/src/esp_efuse_api.c

zephyr/esp32s3/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ if(CONFIG_SOC_SERIES_ESP32S3)
277277
CONFIG_ESP32_TEMP
278278
../../components/driver/deprecated/rtc_temperature_legacy.c
279279
../../components/esp_hw_support/sar_periph_ctrl_common.c
280-
../../components/soc//${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
280+
../../components/soc/${CONFIG_SOC_SERIES}/temperature_sensor_periph.c
281281
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_rtc_calib.c
282282
../../components/efuse/${CONFIG_SOC_SERIES}/esp_efuse_table.c
283283
../../components/efuse/src/esp_efuse_api.c

0 commit comments

Comments
 (0)