diff options
author | Javier Martinez Canillas <javier@osg.samsung.com> | 2015-09-03 10:47:25 -0700 |
---|---|---|
committer | Dmitry Torokhov <dmitry.torokhov@gmail.com> | 2015-09-03 10:56:19 -0700 |
commit | f2bc114b82ecbd32b3581bebdf40f1f2c4e9941b (patch) | |
tree | e287670c5c9f1360b1835c1af71024a7da4abfe1 /drivers/input | |
parent | 4aeca98c49e9873e18b27540a0ba18b22e1b9424 (diff) | |
download | op-kernel-dev-f2bc114b82ecbd32b3581bebdf40f1f2c4e9941b.zip op-kernel-dev-f2bc114b82ecbd32b3581bebdf40f1f2c4e9941b.tar.gz |
Input: cyttsp - remove unnecessary MODULE_ALIAS()
The drivers have a I2C device ID table that is used to create the module
aliases and also "cyttsp" and "cyttsp4" are not supported I2C device IDs
so these module aliases are never used.
Signed-off-by: Javier Martinez Canillas <javier@osg.samsung.com>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Diffstat (limited to 'drivers/input')
-rw-r--r-- | drivers/input/touchscreen/cyttsp4_i2c.c | 1 | ||||
-rw-r--r-- | drivers/input/touchscreen/cyttsp_i2c.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/drivers/input/touchscreen/cyttsp4_i2c.c b/drivers/input/touchscreen/cyttsp4_i2c.c index 9a323dd..a9f95c7 100644 --- a/drivers/input/touchscreen/cyttsp4_i2c.c +++ b/drivers/input/touchscreen/cyttsp4_i2c.c @@ -86,4 +86,3 @@ module_i2c_driver(cyttsp4_i2c_driver); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Cypress TrueTouch(R) Standard Product (TTSP) I2C driver"); MODULE_AUTHOR("Cypress"); -MODULE_ALIAS("i2c:cyttsp4"); diff --git a/drivers/input/touchscreen/cyttsp_i2c.c b/drivers/input/touchscreen/cyttsp_i2c.c index 519e2de..eee51b3 100644 --- a/drivers/input/touchscreen/cyttsp_i2c.c +++ b/drivers/input/touchscreen/cyttsp_i2c.c @@ -86,4 +86,3 @@ module_i2c_driver(cyttsp_i2c_driver); MODULE_LICENSE("GPL"); MODULE_DESCRIPTION("Cypress TrueTouch(R) Standard Product (TTSP) I2C driver"); MODULE_AUTHOR("Cypress"); -MODULE_ALIAS("i2c:cyttsp"); |