rtc: stm32: fix misspelling and misalignment issues
[linux/fpc-iii.git] / Documentation / devicetree / bindings / display / connector / dvi-connector.txt
blob207e42e9eba0e1b17a0d0fcc6a7cf32b8209b4c9
1 DVI Connector
2 ==============
4 Required properties:
5 - compatible: "dvi-connector"
7 Optional properties:
8 - label: a symbolic name for the connector
9 - ddc-i2c-bus: phandle to the i2c bus that is connected to DVI DDC
10 - analog: the connector has DVI analog pins
11 - digital: the connector has DVI digital pins
12 - dual-link: the connector has pins for DVI dual-link
13 - hpd-gpios: HPD GPIO number
15 Required nodes:
16 - Video port for DVI input
18 Note: One (or both) of 'analog' or 'digital' must be set.
20 Example
21 -------
23 dvi0: connector@0 {
24         compatible = "dvi-connector";
25         label = "dvi";
27         digital;
29         ddc-i2c-bus = <&i2c3>;
31         port {
32                 dvi_connector_in: endpoint {
33                         remote-endpoint = <&tfp410_out>;
34                 };
35         };