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.
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]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"); |
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 |
---|---|---|
|
@@ -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"); |