Skip to content

Commit

Permalink
driver: add touch gt9271 configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Nov 22, 2024
1 parent 13cbfe9 commit b7b865c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion drivers/input/touchscreen/gt9xx/gt9xx.c
Original file line number Diff line number Diff line change
Expand Up @@ -2656,7 +2656,12 @@ static int goodix_ts_probe(struct i2c_client *client, const struct i2c_device_id
gtp_change_x2y = TRUE;
gtp_x_reverse = FALSE;
gtp_y_reverse = TRUE;
} else if (val == 101) {
}else if (val == 9271) {
m89or101 = TRUE;
gtp_change_x2y = TRUE;
gtp_x_reverse = TRUE;
gtp_y_reverse = FALSE;
} else if (val == 101) {
m89or101 = FALSE;
gtp_change_x2y = TRUE;
gtp_x_reverse = TRUE;
Expand Down

0 comments on commit b7b865c

Please sign in to comment.