Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Input: novatek-nvt-ts - replace generic i2c device id with specific IC variant

This is done in preparation to introduce other variants of the Novatek NVT
touchscreen controller that can be supported by the driver.

Signed-off-by: Joel Selvaraj <joelselvaraj.oss@gmail.com>
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Acked-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20240601-nvt-ts-devicetree-regulator-support-v5-1-aa9bf986347d@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Joel Selvaraj and committed by
Dmitry Torokhov
c12fbeb2 55bef835

+2 -2
+1 -1
drivers/input/touchscreen/novatek-nvt-ts.c
··· 278 278 } 279 279 280 280 static const struct i2c_device_id nvt_ts_i2c_id[] = { 281 - { "NVT-ts" }, 281 + { "nt11205-ts" }, 282 282 { } 283 283 }; 284 284 MODULE_DEVICE_TABLE(i2c, nvt_ts_i2c_id);
+1 -1
drivers/platform/x86/x86-android-tablets/other.c
··· 40 40 { 41 41 /* Novatek NVT-ts touchscreen */ 42 42 .board_info = { 43 - .type = "NVT-ts", 43 + .type = "nt11205-ts", 44 44 .addr = 0x34, 45 45 .dev_name = "NVT-ts", 46 46 },