Skip to content

Commit

Permalink
drivers: sensor: meas: Move to vendor subdirectory
Browse files Browse the repository at this point in the history
Organizes sensor drivers by vendor to distribute maintainership
responsibilities.

Signed-off-by: Maureen Helm <[email protected]>
  • Loading branch information
MaureenHelm authored and nashif committed Apr 8, 2024
1 parent b6fd6ea commit d2dfb8e
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 4 deletions.
3 changes: 1 addition & 2 deletions drivers/sensor/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ add_subdirectory(honeywell)
add_subdirectory(infineon)
add_subdirectory(ite)
add_subdirectory(maxim)
add_subdirectory(meas)
add_subdirectory(microchip)
add_subdirectory(nordic)
add_subdirectory(nuvoton)
Expand Down Expand Up @@ -51,8 +52,6 @@ add_subdirectory_ifdef(CONFIG_MC3419 mc3419)
add_subdirectory_ifdef(CONFIG_MHZ19B mhz19b)
add_subdirectory_ifdef(CONFIG_MPU6050 tdk/mpu6050)
add_subdirectory_ifdef(CONFIG_MPU9250 tdk/mpu9250)
add_subdirectory_ifdef(CONFIG_MS5607 ms5607)
add_subdirectory_ifdef(CONFIG_MS5837 ms5837)
add_subdirectory_ifdef(CONFIG_NTC_THERMISTOR ntc_thermistor)
add_subdirectory_ifdef(CONFIG_PMS7003 pms7003)
add_subdirectory_ifdef(CONFIG_QDEC_SAM qdec_sam)
Expand Down
3 changes: 1 addition & 2 deletions drivers/sensor/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ source "drivers/sensor/honeywell/Kconfig"
source "drivers/sensor/infineon/Kconfig"
source "drivers/sensor/ite/Kconfig"
source "drivers/sensor/maxim/Kconfig"
source "drivers/sensor/meas/Kconfig"
source "drivers/sensor/microchip/Kconfig"
source "drivers/sensor/nordic/Kconfig"
source "drivers/sensor/nuvoton/Kconfig"
Expand Down Expand Up @@ -132,8 +133,6 @@ source "drivers/sensor/mc3419/Kconfig"
source "drivers/sensor/mhz19b/Kconfig"
source "drivers/sensor/tdk/mpu6050/Kconfig"
source "drivers/sensor/tdk/mpu9250/Kconfig"
source "drivers/sensor/ms5607/Kconfig"
source "drivers/sensor/ms5837/Kconfig"
source "drivers/sensor/ntc_thermistor/Kconfig"
source "drivers/sensor/pms7003/Kconfig"
source "drivers/sensor/qdec_sam/Kconfig"
Expand Down
7 changes: 7 additions & 0 deletions drivers/sensor/meas/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright (c) 2024 Analog Devices, Inc.
# SPDX-License-Identifier: Apache-2.0

# zephyr-keep-sorted-start
add_subdirectory_ifdef(CONFIG_MS5607 ms5607)
add_subdirectory_ifdef(CONFIG_MS5837 ms5837)
# zephyr-keep-sorted-stop
7 changes: 7 additions & 0 deletions drivers/sensor/meas/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Copyright (c) 2024 Analog Devices, Inc.
# SPDX-License-Identifier: Apache-2.0

# zephyr-keep-sorted-start
source "drivers/sensor/meas/ms5607/Kconfig"
source "drivers/sensor/meas/ms5837/Kconfig"
# zephyr-keep-sorted-stop
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d2dfb8e

Please sign in to comment.