diff options
author | Jean Delvare <[email protected]> | 2020-06-11 12:03:47 +0200 |
---|---|---|
committer | Wolfram Sang <[email protected]> | 2020-06-11 12:32:14 +0200 |
commit | d790eeb3db6aefac39ffa06e598eb31b7352ca4f (patch) | |
tree | 7211224bef134a7a3d82a71a0d82796eea93c5dd | |
parent | e6197c8290f72ebadc24e05d876f42211318cd91 (diff) |
i2c: Drop stray comma in MODULE_AUTHOR statements
It is not the common usage to have a comma between the name and the
email address, so remove it.
Signed-off-by: Jean Delvare <[email protected]>
Cc: Kukjin Kim <[email protected]>
Cc: Krzysztof Kozlowski <[email protected]>
Reviewed-by: Jarkko Nikula <[email protected]>
Signed-off-by: Wolfram Sang <[email protected]>
-rw-r--r-- | drivers/i2c/busses/i2c-exynos5.c | 4 | ||||
-rw-r--r-- | drivers/i2c/busses/i2c-s3c2410.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/drivers/i2c/busses/i2c-exynos5.c b/drivers/i2c/busses/i2c-exynos5.c index ba7033c9e157..6ce3ec03b595 100644 --- a/drivers/i2c/busses/i2c-exynos5.c +++ b/drivers/i2c/busses/i2c-exynos5.c @@ -877,6 +877,6 @@ static struct platform_driver exynos5_i2c_driver = { module_platform_driver(exynos5_i2c_driver); MODULE_DESCRIPTION("Exynos5 HS-I2C Bus driver"); -MODULE_AUTHOR("Naveen Krishna Chatradhi, <[email protected]>"); -MODULE_AUTHOR("Taekgyun Ko, <[email protected]>"); +MODULE_AUTHOR("Naveen Krishna Chatradhi <[email protected]>"); +MODULE_AUTHOR("Taekgyun Ko <[email protected]>"); MODULE_LICENSE("GPL v2"); diff --git a/drivers/i2c/busses/i2c-s3c2410.c b/drivers/i2c/busses/i2c-s3c2410.c index 5a5638e1daa1..19b23146ec7c 100644 --- a/drivers/i2c/busses/i2c-s3c2410.c +++ b/drivers/i2c/busses/i2c-s3c2410.c @@ -1267,5 +1267,5 @@ static void __exit i2c_adap_s3c_exit(void) module_exit(i2c_adap_s3c_exit); MODULE_DESCRIPTION("S3C24XX I2C Bus driver"); -MODULE_AUTHOR("Ben Dooks, <[email protected]>"); +MODULE_AUTHOR("Ben Dooks <[email protected]>"); MODULE_LICENSE("GPL"); |