mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 08:46:49 +07:00
7da48df734
The example contains a device node for a retu device, but its compatible string doesn't have a vendor prefix. While being there, drop the -mfd suffix since isn't correct. Signed-off-by: Javier Martinez Canillas <javier@dowhile0.org> Acked-by: Rob Herring <robh@kernel.org> Acked-by: Aaro Koskinen <aaro.koskinen@iki.fi> Acked-by: Tony Lindgren <tony@atomide.com> Reviewed-by: Wolfram Sang <wsa@the-dreams.de> Signed-off-by: Lee Jones <lee.jones@linaro.org>
28 lines
484 B
Plaintext
28 lines
484 B
Plaintext
Device tree bindings for i2c-cbus-gpio driver
|
|
|
|
Required properties:
|
|
- compatible = "i2c-cbus-gpio";
|
|
- gpios: clk, dat, sel
|
|
- #address-cells = <1>;
|
|
- #size-cells = <0>;
|
|
|
|
Optional properties:
|
|
- child nodes conforming to i2c bus binding
|
|
|
|
Example:
|
|
|
|
i2c@0 {
|
|
compatible = "i2c-cbus-gpio";
|
|
gpios = <&gpio 66 0 /* clk */
|
|
&gpio 65 0 /* dat */
|
|
&gpio 64 0 /* sel */
|
|
>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
|
|
retu: retu@1 {
|
|
compatible = "nokia,retu";
|
|
reg = <0x1>;
|
|
};
|
|
};
|