boards: fix few incorrect ft5336 polarities
The interrupt pin is active low, not sure how any of these could have worked correctly, maybe they've only been tested in polling mode. Signed-off-by: Fabio Baltieri <fabiobaltieri@google.com>
This commit is contained in:
committed by
Benjamin Cabé
parent
b01b77aa44
commit
b13255895d
@@ -190,7 +190,7 @@
|
||||
ft5336_touch: ft5336@38 {
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x38>;
|
||||
int-gpios = <&gpio1 7 0>;
|
||||
int-gpios = <&gpio1 7 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -89,6 +89,6 @@
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x38>;
|
||||
reset-gpios = <&hsgpio0 15 GPIO_ACTIVE_LOW>;
|
||||
int-gpios = <&hsgpio0 11 GPIO_ACTIVE_HIGH>;
|
||||
int-gpios = <&hsgpio0 11 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
ft5336: ft5336@38 {
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x38>;
|
||||
int-gpios = <&dsi_lcd_qsh_030 4 0>;
|
||||
int-gpios = <&dsi_lcd_qsh_030 4 GPIO_ACTIVE_LOW>;
|
||||
status = "okay";
|
||||
};
|
||||
};
|
||||
|
||||
@@ -59,7 +59,7 @@
|
||||
ft5336: ft5336@38 {
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x38>;
|
||||
int-gpios = <&dsi_lcd_qsh_030 4 0>;
|
||||
int-gpios = <&dsi_lcd_qsh_030 4 GPIO_ACTIVE_LOW>;
|
||||
status = "okay";
|
||||
};
|
||||
};
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
ft5336: ft5336@38 {
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x38>;
|
||||
int-gpios = <&gpioi 13 0>;
|
||||
int-gpios = <&gpioi 13 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
ft5336: ft5336@38 {
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x38>;
|
||||
int-gpios = <&gpioi 13 0>;
|
||||
int-gpios = <&gpioi 13 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -139,7 +139,7 @@ arduino_serial: &usart6 {};
|
||||
ft6202: ft6202@2a {
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x2a>;
|
||||
int-gpios = <&gpioi 13 0>;
|
||||
int-gpios = <&gpioi 13 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
@@ -169,7 +169,7 @@
|
||||
ft5336: ft5336@38 {
|
||||
compatible = "focaltech,ft5336";
|
||||
reg = <0x38>;
|
||||
int-gpios = <&gpioh 2 0>;
|
||||
int-gpios = <&gpioh 2 GPIO_ACTIVE_LOW>;
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user