Commit 8215ca51 authored by Hans de Goede's avatar Hans de Goede

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: default avatarHans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20240216201721.239791-5-hdegoede@redhat.com
parent 812a79b5
...@@ -68,7 +68,7 @@ static const struct x86_i2c_client_info acer_b1_750_i2c_clients[] __initconst = ...@@ -68,7 +68,7 @@ static const struct x86_i2c_client_info acer_b1_750_i2c_clients[] __initconst =
}, },
}; };
static struct gpiod_lookup_table acer_b1_750_goodix_gpios = { static struct gpiod_lookup_table acer_b1_750_nvt_ts_gpios = {
.dev_id = "i2c-NVT-ts", .dev_id = "i2c-NVT-ts",
.table = { .table = {
GPIO_LOOKUP("INT33FC:01", 26, "reset", GPIO_ACTIVE_LOW), GPIO_LOOKUP("INT33FC:01", 26, "reset", GPIO_ACTIVE_LOW),
...@@ -77,7 +77,7 @@ static struct gpiod_lookup_table acer_b1_750_goodix_gpios = { ...@@ -77,7 +77,7 @@ static struct gpiod_lookup_table acer_b1_750_goodix_gpios = {
}; };
static struct gpiod_lookup_table * const acer_b1_750_gpios[] = { static struct gpiod_lookup_table * const acer_b1_750_gpios[] = {
&acer_b1_750_goodix_gpios, &acer_b1_750_nvt_ts_gpios,
&int3496_reference_gpios, &int3496_reference_gpios,
NULL NULL
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment