Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 62e44b41 authored by Satya Durga Srinivasu Prabhala's avatar Satya Durga Srinivasu Prabhala Committed by Matt Wagantall
Browse files

sensors: Add a snapshot of the MSM SSC sensors driver



This snapshot is taken as of msm-3.14 commit 3bc54cf86b
(Merge "msm: camera: Add dummy sub module in sensor pipeline")

Signed-off-by: default avatarSatya Durga Srinivasu Prabhala <satyap@codeaurora.org>
parent 6b09eba2
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
* msm-ssc-sensors

Required properties:

 - compatible:	"qcom,msm-ssc-sensors"

Example:

	qcom,msm-ssc-sensors {
		compatible = "qcom,msm-ssc-sensors";
	};
+2 −0
Original line number Diff line number Diff line
@@ -190,4 +190,6 @@ source "drivers/ras/Kconfig"

source "drivers/thunderbolt/Kconfig"

source "drivers/sensors/Kconfig"

endmenu
+2 −0
Original line number Diff line number Diff line
@@ -165,3 +165,5 @@ obj-$(CONFIG_RAS) += ras/
obj-$(CONFIG_THUNDERBOLT)	+= thunderbolt/
obj-$(CONFIG_CORESIGHT)		+= coresight/
obj-$(CONFIG_ESOC)		+= esoc/

obj-$(CONFIG_SENSORS_SSC)	+= sensors/
+6 −0
Original line number Diff line number Diff line
config SENSORS_SSC
	bool "Enable Sensors Driver Support for SSC"
	help
	  Add support for sensors SSC driver.
	  This driver is used for exercising sensors use case,
	  time syncing with ADSP clock.
+1 −0
Original line number Diff line number Diff line
obj-$(CONFIG_SENSORS_SSC)	+= sensors_ssc.o
Loading