tests: build_all: led: Enable various LED devices
Add I2C based LED devices to led/app.overlay to get those associated drivers enabled as part of the build test. Signed-off-by: Kumar Gala <galak@kernel.org>
This commit is contained in:
parent
0e1a7e0241
commit
1679c650a7
|
@ -29,5 +29,46 @@
|
|||
gpios = <&test_gpio 0 0>;
|
||||
};
|
||||
};
|
||||
|
||||
test_i2c: i2c@11112222 {
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
compatible = "vnd,i2c";
|
||||
reg = <0x11112222 0x1000>;
|
||||
status = "okay";
|
||||
clock-frequency = <100000>;
|
||||
|
||||
ht16k33@1 {
|
||||
compatible = "holtek,ht16k33";
|
||||
reg = <0x1>;
|
||||
#address-cells = <1>;
|
||||
#size-cells = <0>;
|
||||
};
|
||||
|
||||
lp3943@2 {
|
||||
compatible = "ti,lp3943";
|
||||
reg = <0x2>;
|
||||
};
|
||||
|
||||
lp503x@3 {
|
||||
compatible = "ti,lp503x";
|
||||
reg = <0x3>;
|
||||
};
|
||||
|
||||
lp5562@4 {
|
||||
compatible = "ti,lp5562";
|
||||
reg = <0x4>;
|
||||
};
|
||||
|
||||
pca9633@5 {
|
||||
compatible = "nxp,pca9633";
|
||||
reg = <0x5>;
|
||||
};
|
||||
|
||||
tlc59108@6 {
|
||||
compatible = "ti,tlc59108";
|
||||
reg = <0x6>;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue