diff mbox series

i2c: qcom-cci: add sm8250 compatible

Message ID 1623659341-21954-1-git-send-email-loic.poulain@linaro.org
State New
Headers show
Series i2c: qcom-cci: add sm8250 compatible | expand

Commit Message

Loic Poulain June 14, 2021, 8:29 a.m. UTC
From: Jonathan Marek <jonathan@marek.ca>


SM8250 CCI is the same as SDM845, add an equivalent compatible for SM8250.

Signed-off-by: Jonathan Marek <jonathan@marek.ca>

Reviewed-by: Loic Poulain <loic.poulain@linaro.org>

Reviewed-by: Vinod Koul <vkoul@kernel.org>

Acked-by: Rob Herring <robh@kernel.org>

---
 Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt | 5 +++--
 drivers/i2c/busses/i2c-qcom-cci.c                      | 1 +
 2 files changed, 4 insertions(+), 2 deletions(-)

-- 
2.7.4

Comments

Wolfram Sang June 20, 2021, 8:45 p.m. UTC | #1
On Mon, Jun 14, 2021 at 10:29:01AM +0200, Loic Poulain wrote:
> From: Jonathan Marek <jonathan@marek.ca>

> 

> SM8250 CCI is the same as SDM845, add an equivalent compatible for SM8250.

> 

> Signed-off-by: Jonathan Marek <jonathan@marek.ca>

> Reviewed-by: Loic Poulain <loic.poulain@linaro.org>

> Reviewed-by: Vinod Koul <vkoul@kernel.org>

> Acked-by: Rob Herring <robh@kernel.org>


This patch is in -next since 2021-05-25. But I forgot to send the mail
saying so. Sorry!
diff mbox series

Patch

diff --git a/Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt b/Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
index c6668b7..7b9fc0c 100644
--- a/Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
+++ b/Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
@@ -9,6 +9,7 @@  PROPERTIES:
 		"qcom,msm8916-cci"
 		"qcom,msm8996-cci"
 		"qcom,sdm845-cci"
+		"qcom,sm8250-cci"
 
 - reg
 	Usage: required
@@ -41,8 +42,8 @@  PROPERTIES:
 
 SUBNODES:
 
-The CCI provides I2C masters for one (msm8916) or two i2c busses (msm8996 and
-sdm845), described as subdevices named "i2c-bus@0" and "i2c-bus@1".
+The CCI provides I2C masters for one (msm8916) or two i2c busses (msm8996,
+sdm845 and sm8250), described as subdevices named "i2c-bus@0" and "i2c-bus@1".
 
 PROPERTIES:
 
diff --git a/drivers/i2c/busses/i2c-qcom-cci.c b/drivers/i2c/busses/i2c-qcom-cci.c
index c63d554..c1de8eb 100644
--- a/drivers/i2c/busses/i2c-qcom-cci.c
+++ b/drivers/i2c/busses/i2c-qcom-cci.c
@@ -769,6 +769,7 @@  static const struct of_device_id cci_dt_match[] = {
 	{ .compatible = "qcom,msm8916-cci", .data = &cci_v1_data},
 	{ .compatible = "qcom,msm8996-cci", .data = &cci_v2_data},
 	{ .compatible = "qcom,sdm845-cci", .data = &cci_v2_data},
+	{ .compatible = "qcom,sm8250-cci", .data = &cci_v2_data},
 	{}
 };
 MODULE_DEVICE_TABLE(of, cci_dt_match);