forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Input: remove unneeded MODULE_VERSION() usage in touchscreen drivers
MODULE_VERSION is useless for in-kernel drivers, so just remove all usage of it in the touchscreen drivers. Along with this, some DRV_VERSION macros were removed as they are also pointless. Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Dmitry Torokhov <[email protected]>
- Loading branch information
Showing
4 changed files
with
0 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,7 +44,6 @@ | |
|
||
/* Device, Driver information */ | ||
#define DEVICE_NAME "elants_i2c" | ||
#define DRV_VERSION "1.0.9" | ||
|
||
/* Convert from rows or columns into resolution */ | ||
#define ELAN_TS_RESOLUTION(n, m) (((n) - 1) * (m)) | ||
|
@@ -1402,5 +1401,4 @@ module_i2c_driver(elants_i2c_driver); | |
|
||
MODULE_AUTHOR("Scott Liu <[email protected]>"); | ||
MODULE_DESCRIPTION("Elan I2c Touchscreen driver"); | ||
MODULE_VERSION(DRV_VERSION); | ||
MODULE_LICENSE("GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1611,6 +1611,5 @@ static struct i2c_driver mip4_driver = { | |
module_i2c_driver(mip4_driver); | ||
|
||
MODULE_DESCRIPTION("MELFAS MIP4 Touchscreen"); | ||
MODULE_VERSION("2016.10.31"); | ||
MODULE_AUTHOR("Sangwon Jee <[email protected]>"); | ||
MODULE_LICENSE("GPL"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,6 @@ | |
#include <asm/unaligned.h> | ||
|
||
#define WDT87XX_NAME "wdt87xx_i2c" | ||
#define WDT87XX_DRV_VER "0.9.8" | ||
#define WDT87XX_FW_NAME "wdt87xx_fw.bin" | ||
#define WDT87XX_CFG_NAME "wdt87xx_cfg.bin" | ||
|
||
|
@@ -1183,5 +1182,4 @@ module_i2c_driver(wdt87xx_driver); | |
|
||
MODULE_AUTHOR("HN Chen <[email protected]>"); | ||
MODULE_DESCRIPTION("WeidaHiTech WDT87XX Touchscreen driver"); | ||
MODULE_VERSION(WDT87XX_DRV_VER); | ||
MODULE_LICENSE("GPL"); |