tests: drivers: build_all: gpio: enable pca95xx

The pca95xx driver was not compiled, add it to the list.

Signed-off-by: Gerard Marull-Paretas <gerard.marull@nordicsemi.no>
This commit is contained in:
Gerard Marull-Paretas 2022-03-15 16:00:28 +01:00 committed by Marti Bolivar
commit 648d71674f
2 changed files with 7 additions and 4 deletions

View file

@ -53,13 +53,14 @@
reset-gpios = <&test_gpio 0 0>; reset-gpios = <&test_gpio 0 0>;
}; };
test_i2c_pca95xx: pca95xx@2 { test_i2c_pca95xx: pca95xx@20 {
compatible = "nxp,pca95xx"; compatible = "nxp,pca95xx";
label = "PCA95XX"; label = "PCA95XX";
reg = <0x2>; reg = <0x20>;
/* has-pud; */
#gpio-cells = <2>;
gpio-controller; gpio-controller;
#gpio-cells = <2>;
ngpios = <16>;
interrupt-gpios = <&test_gpio 0 0>;
}; };
test_i2c_pca953x: pca953x@70 { test_i2c_pca953x: pca953x@70 {

View file

@ -4,6 +4,8 @@ CONFIG_TEST_USERSPACE=y
CONFIG_I2C=y CONFIG_I2C=y
CONFIG_GPIO_SX1509B=y CONFIG_GPIO_SX1509B=y
CONFIG_GPIO_PCAL6408A=y CONFIG_GPIO_PCAL6408A=y
CONFIG_GPIO_PCA95XX=y
CONFIG_GPIO_PCA95XX_INTERRUPT=y
CONFIG_GPIO_PCA953X=y CONFIG_GPIO_PCA953X=y
CONFIG_GPIO_FXL6408=y CONFIG_GPIO_FXL6408=y
CONFIG_SPI=y CONFIG_SPI=y