File tree 9 files changed +1408
-0
lines changed
9 files changed +1408
-0
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,6 @@ source "drivers/iio/common/hid-sensors/Kconfig"
8
8
source "drivers/iio/common/inv_sensors/Kconfig"
9
9
source "drivers/iio/common/ms_sensors/Kconfig"
10
10
source "drivers/iio/common/scmi_sensors/Kconfig"
11
+ source "drivers/iio/common/qcom_smgr/Kconfig"
11
12
source "drivers/iio/common/ssp_sensors/Kconfig"
12
13
source "drivers/iio/common/st_sensors/Kconfig"
Original file line number Diff line number Diff line change @@ -13,5 +13,6 @@ obj-y += hid-sensors/
13
13
obj-y += inv_sensors/
14
14
obj-y += ms_sensors/
15
15
obj-y += scmi_sensors/
16
+ obj-y += qcom_smgr/
16
17
obj-y += ssp_sensors/
17
18
obj-y += st_sensors/
Original file line number Diff line number Diff line change
1
+ #
2
+ # Qualcomm SSC IIO
3
+ #
4
+ # When adding new entries keep the list in alphabetical order
5
+
6
+ config IIO_QCOM_SMGR
7
+ tristate "Qualcomm SSC Sensor Manager"
8
+ depends on ARCH_QCOM
9
+ depends on QCOM_RPROC_COMMON
10
+ select QCOM_QMI_HELPERS
11
+ select IIO_BUFFER
12
+ help
13
+ Say yes here to build core support for the Sensor Manager (SMGR)
14
+ service provided by the Qualcomm Snapdragon Sensor Core (SSC).
15
+
16
+ To compile this driver as a module, choose M here: the
17
+ module will be called smgr.
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0
2
+ #
3
+ # Makefile for Qualcomm sensor manager driver
4
+ #
5
+
6
+ obj-y += qmi/
7
+
8
+ obj-$(CONFIG_IIO_QCOM_SMGR) += smgr.o
Original file line number Diff line number Diff line change
1
+ # SPDX-License-Identifier: GPL-2.0
2
+
3
+ obj-$(CONFIG_IIO_QCOM_SMGR) += sns_smgr.o
You can’t perform that action at this time.
0 commit comments