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

Commit 52b53aca authored by Kyle Yan's avatar Kyle Yan Committed by Gerrit - the friendly Code Review server
Browse files

Merge "clk: qcom: clock: Add GCC driver for MSMSKUNK" into msm-4.8

parents 2e15126b 575a45fd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@ Required properties :
			"qcom,gcc-msm8974pro-ac"
			"qcom,gcc-msm8996"
			"qcom,gcc-mdm9615"
			"qcom,gcc-msmskunk"

- reg : shall contain base register location and length
- #clock-cells : shall contain 1
+9 −0
Original line number Diff line number Diff line
@@ -150,3 +150,12 @@ config MSM_MMCC_8996
	  Support for the multimedia clock controller on msm8996 devices.
	  Say Y if you want to support multimedia devices such as display,
	  graphics, video encode/decode, camera, etc.

config MSM_GCC_SKUNK
	tristate "MSMSKUNK Global Clock Controller"
	depends on COMMON_CLK_QCOM
	help
	  Support for the global clock controller on Qualcomm Technologies, Inc
	  MSMskunk devices.
	  Say Y if you want to use peripheral devices such as UART, SPI,
	  i2c, USB, UFS, SD/eMMC, PCIe, etc.
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ obj-$(CONFIG_MSM_GCC_8916) += gcc-msm8916.o
obj-$(CONFIG_MSM_GCC_8960) += gcc-msm8960.o
obj-$(CONFIG_MSM_GCC_8974) += gcc-msm8974.o
obj-$(CONFIG_MSM_GCC_8996) += gcc-msm8996.o
obj-$(CONFIG_MSM_GCC_SKUNK) += gcc-msmskunk.o
obj-$(CONFIG_MSM_LCC_8960) += lcc-msm8960.o
obj-$(CONFIG_MSM_MMCC_8960) += mmcc-msm8960.o
obj-$(CONFIG_MSM_MMCC_8974) += mmcc-msm8974.o
Loading