Skip to content

Commit 8215ca5

Browse files
committed
platform/x86: x86-android-tablets: Fix acer_b1_750_goodix_gpios name
The Acer B1 750 tablet used a Novatek NVT-ts touchscreen, not a Goodix touchscreen. Rename acer_b1_750_goodix_gpios to acer_b1_750_nvt_ts_gpios to correctly reflect this. Signed-off-by: Hans de Goede <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 812a79b commit 8215ca5

File tree

1 file changed

+2
-2
lines changed
  • drivers/platform/x86/x86-android-tablets

1 file changed

+2
-2
lines changed

drivers/platform/x86/x86-android-tablets/other.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ static const struct x86_i2c_client_info acer_b1_750_i2c_clients[] __initconst =
6868
},
6969
};
7070

71-
static struct gpiod_lookup_table acer_b1_750_goodix_gpios = {
71+
static struct gpiod_lookup_table acer_b1_750_nvt_ts_gpios = {
7272
.dev_id = "i2c-NVT-ts",
7373
.table = {
7474
GPIO_LOOKUP("INT33FC:01", 26, "reset", GPIO_ACTIVE_LOW),
@@ -77,7 +77,7 @@ static struct gpiod_lookup_table acer_b1_750_goodix_gpios = {
7777
};
7878

7979
static struct gpiod_lookup_table * const acer_b1_750_gpios[] = {
80-
&acer_b1_750_goodix_gpios,
80+
&acer_b1_750_nvt_ts_gpios,
8181
&int3496_reference_gpios,
8282
NULL
8383
};

0 commit comments

Comments
 (0)