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

Commit 6abf204a authored by Evgeniy Borisov's avatar Evgeniy Borisov
Browse files

ARM: dts: msm8610-camera Fix for generic sensor node



We can't use default slave address 0 for the generic
I2c camera node.
According to I2c specifications, i2c address 0 is
"general call address", ie a broadcast address.

Change-Id: I034ea04c7bb4ef2f1e727e6e6e2138ebd6613df0
Signed-off-by: default avatarEvgeniy Borisov <eborisov@codeaurora.org>
parent 23a4daa8
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -261,10 +261,11 @@
		qcom,sensor-mode = <1>;
		qcom,cci-master = <0>;
	};
	qcom,camera@0 {

	qcom,camera@1 {
		cell-index = <0>;
		compatible = "qcom,camera";
		reg = <0x0>;
		reg = <0x1>;
		qcom,csiphy-sd-index = <0>;
		qcom,csid-sd-index = <0>;
		qcom,mount-angle = <90>;
@@ -294,10 +295,10 @@
		status = "ok";
	};

	qcom,camera@1 {
	qcom,camera@2 {
		cell-index = <1>;
		compatible = "qcom,camera";
		reg = <0x1>;
		reg = <0x2>;
		qcom,csiphy-sd-index = <1>;
		qcom,csid-sd-index = <1>;
		qcom,mount-angle = <90>;
@@ -322,5 +323,4 @@
			"CAM_STANDBY";
		status = "ok";
	};

};