aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree
diff options
context:
space:
mode:
authorSylwester Nawrocki <s.nawrocki@samsung.com>2013-05-08 13:24:14 -0400
committerMauro Carvalho Chehab <mchehab@redhat.com>2013-06-12 20:49:25 -0400
commitc28c99e7741f848ffe808a578b265dd2bb23a52f (patch)
treec0b692b969567d21b207b099cac11435a3eac6e7 /Documentation/devicetree
parent6a2f18cf58a59ba7de2a5f912b12d9732702969c (diff)
[media] exynos4-is: Fix example dts in .../bindings/samsung-fimc.txt
The s5c73m3 sensor node should be off an I2C bus controller node. Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r--Documentation/devicetree/bindings/media/samsung-fimc.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/Documentation/devicetree/bindings/media/samsung-fimc.txt b/Documentation/devicetree/bindings/media/samsung-fimc.txt
index 51c776b7f7a3..96312f6c4c26 100644
--- a/Documentation/devicetree/bindings/media/samsung-fimc.txt
+++ b/Documentation/devicetree/bindings/media/samsung-fimc.txt
@@ -127,22 +127,22 @@ Example:
127 }; 127 };
128 }; 128 };
129 }; 129 };
130 };
131 130
132 /* MIPI CSI-2 bus IF sensor */ 131 /* MIPI CSI-2 bus IF sensor */
133 s5c73m3: sensor@0x1a { 132 s5c73m3: sensor@0x1a {
134 compatible = "samsung,s5c73m3"; 133 compatible = "samsung,s5c73m3";
135 reg = <0x1a>; 134 reg = <0x1a>;
136 vddio-supply = <...>; 135 vddio-supply = <...>;
137 136
138 clock-frequency = <24000000>; 137 clock-frequency = <24000000>;
139 clocks = <...>; 138 clocks = <...>;
140 clock-names = "mclk"; 139 clock-names = "mclk";
141 140
142 port { 141 port {
143 s5c73m3_1: endpoint { 142 s5c73m3_1: endpoint {
144 data-lanes = <1 2 3 4>; 143 data-lanes = <1 2 3 4>;
145 remote-endpoint = <&csis0_ep>; 144 remote-endpoint = <&csis0_ep>;
145 };
146 }; 146 };
147 }; 147 };
148 }; 148 };