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

Input: novatek-nvt-ts - add touchscreen model number to description

A phoronix forum member actual found documentation on what the model
number for the touchscreen controller on the Acer Iconia One 7 B1-750 is.

Update the driver's description to include this.

Link: https://www.phoronix.com/forums/forum/hardware/general-hardware/1382535-10-years-later-linux-getting-a-touchscreen-driver-for-a-once-popular-tablet?p=1384707#post1384707
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Link: https://lore.kernel.org/r/20230710123633.323937-2-hdegoede@redhat.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Hans de Goede and committed by
Dmitry Torokhov
7249bdbd 85429376

+5 -7
+2 -2
drivers/input/touchscreen/Kconfig
··· 655 655 module will be called mtouch. 656 656 657 657 config TOUCHSCREEN_NOVATEK_NVT_TS 658 - tristate "Novatek NVT-ts touchscreen support" 658 + tristate "Novatek NT11205 touchscreen support" 659 659 depends on I2C 660 660 help 661 - Say Y here if you have a Novatek NVT-ts touchscreen. 661 + Say Y here if you have a Novatek NT11205 touchscreen. 662 662 If unsure, say N. 663 663 664 664 To compile this driver as a module, choose M here: the
+3 -5
drivers/input/touchscreen/novatek-nvt-ts.c
··· 1 1 // SPDX-License-Identifier: GPL-2.0-or-later 2 2 /* 3 - * Driver for Novatek i2c touchscreen controller as found on 4 - * the Acer Iconia One 7 B1-750 tablet. The Touchscreen controller 5 - * model-number is unknown. Android calls this a "NVT-ts" touchscreen, 6 - * but that may apply to other Novatek controller models too. 3 + * Driver for Novatek NT11205 i2c touchscreen controller as found 4 + * on the Acer Iconia One 7 B1-750 tablet. 7 5 * 8 6 * Copyright (c) 2023 Hans de Goede <hdegoede@redhat.com> 9 7 */ ··· 294 296 295 297 module_i2c_driver(nvt_ts_driver); 296 298 297 - MODULE_DESCRIPTION("Novatek NVT-ts touchscreen driver"); 299 + MODULE_DESCRIPTION("Novatek NT11205 touchscreen driver"); 298 300 MODULE_AUTHOR("Hans de Goede <hdegoede@redhat.com>"); 299 301 MODULE_LICENSE("GPL");