aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Kepplinger <martin.kepplinger@ginzinger.com>2017-04-14 13:14:06 -0400
committerDmitry Torokhov <dmitry.torokhov@gmail.com>2017-04-14 13:17:04 -0400
commit021cbc1edadf466d088da1345264e1840c6665d3 (patch)
tree12381256fac1d48121cd1daf467b44ec924eac0c
parent61e977b7a43111909a4513529187f56726abda9e (diff)
Input: ar1021_i2c - highlight support for AR1020
ar1021_i2c also supports the ar1020 device I'm using. This is tested. They also share the same datasheet: http://ww1.microchip.com/downloads/en/DeviceDoc/40001393C.pdf So let users see that they have a compatible in front of them by adding AR1020 to the driver's description. Signed-off-by: Martin Kepplinger <martin.kepplinger@ginzinger.com> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
-rw-r--r--drivers/input/touchscreen/Kconfig6
-rw-r--r--drivers/input/touchscreen/ar1021_i2c.c4
2 files changed, 5 insertions, 5 deletions
diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
index 6515e649e204..e3c5112505e4 100644
--- a/drivers/input/touchscreen/Kconfig
+++ b/drivers/input/touchscreen/Kconfig
@@ -93,11 +93,11 @@ config TOUCHSCREEN_AD7879_SPI
93 module will be called ad7879-spi. 93 module will be called ad7879-spi.
94 94
95config TOUCHSCREEN_AR1021_I2C 95config TOUCHSCREEN_AR1021_I2C
96 tristate "Microchip AR1021 i2c touchscreen" 96 tristate "Microchip AR1020/1021 i2c touchscreen"
97 depends on I2C && OF 97 depends on I2C && OF
98 help 98 help
99 Say Y here if you have the Microchip AR1021 touchscreen controller 99 Say Y here if you have the Microchip AR1020 or AR1021 touchscreen
100 chip in your system. 100 controller chip in your system.
101 101
102 If unsure, say N. 102 If unsure, say N.
103 103
diff --git a/drivers/input/touchscreen/ar1021_i2c.c b/drivers/input/touchscreen/ar1021_i2c.c
index 6c3c79b7ff51..1a94d8bfec54 100644
--- a/drivers/input/touchscreen/ar1021_i2c.c
+++ b/drivers/input/touchscreen/ar1021_i2c.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Microchip AR1021 driver for I2C 2 * Microchip AR1020 and AR1021 driver for I2C
3 * 3 *
4 * Author: Christian Gmeiner <christian.gmeiner@gmail.com> 4 * Author: Christian Gmeiner <christian.gmeiner@gmail.com>
5 * 5 *
@@ -175,5 +175,5 @@ static struct i2c_driver ar1021_i2c_driver = {
175module_i2c_driver(ar1021_i2c_driver); 175module_i2c_driver(ar1021_i2c_driver);
176 176
177MODULE_AUTHOR("Christian Gmeiner <christian.gmeiner@gmail.com>"); 177MODULE_AUTHOR("Christian Gmeiner <christian.gmeiner@gmail.com>");
178MODULE_DESCRIPTION("Microchip AR1021 I2C Driver"); 178MODULE_DESCRIPTION("Microchip AR1020 and AR1021 I2C Driver");
179MODULE_LICENSE("GPL"); 179MODULE_LICENSE("GPL");