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: Use separate MODULE_AUTHOR() statements for multiple authors
Modules with multiple authors should use multiple MODULE_AUTHOR() statements according to comment in include/linux/module.h. Split the i2c modules with multiple authors to use multiple MODULE_AUTHOR() statements. Signed-off-by: Jarkko Nikula <[email protected]> Reviewed-by: Jean Delvare <[email protected]> Signed-off-by: Wolfram Sang <[email protected]>
- Loading branch information
Showing
13 changed files
with
30 additions
and
24 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 |
---|---|---|
|
@@ -541,8 +541,8 @@ int i2c_pca_add_numbered_bus(struct i2c_adapter *adap) | |
} | ||
EXPORT_SYMBOL(i2c_pca_add_numbered_bus); | ||
|
||
MODULE_AUTHOR("Ian Campbell <[email protected]>, " | ||
"Wolfram Sang <[email protected]>"); | ||
MODULE_AUTHOR("Ian Campbell <[email protected]>"); | ||
MODULE_AUTHOR("Wolfram Sang <[email protected]>"); | ||
MODULE_DESCRIPTION("I2C-Bus PCA9564/PCA9665 algorithm"); | ||
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 |
---|---|---|
|
@@ -519,9 +519,9 @@ static struct pci_driver ali1535_driver = { | |
|
||
module_pci_driver(ali1535_driver); | ||
|
||
MODULE_AUTHOR("Frodo Looijaard <[email protected]>, " | ||
"Philip Edelbrock <[email protected]>, " | ||
"Mark D. Studebaker <[email protected]> " | ||
"and Dan Eaton <[email protected]>"); | ||
MODULE_AUTHOR("Frodo Looijaard <[email protected]>"); | ||
MODULE_AUTHOR("Philip Edelbrock <[email protected]>"); | ||
MODULE_AUTHOR("Mark D. Studebaker <[email protected]>"); | ||
MODULE_AUTHOR("Dan Eaton <[email protected]>"); | ||
MODULE_DESCRIPTION("ALI1535 SMBus driver"); | ||
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 |
---|---|---|
|
@@ -502,8 +502,8 @@ static struct pci_driver ali15x3_driver = { | |
|
||
module_pci_driver(ali15x3_driver); | ||
|
||
MODULE_AUTHOR ("Frodo Looijaard <[email protected]>, " | ||
"Philip Edelbrock <[email protected]>, " | ||
"and Mark D. Studebaker <[email protected]>"); | ||
MODULE_AUTHOR("Frodo Looijaard <[email protected]>"); | ||
MODULE_AUTHOR("Philip Edelbrock <[email protected]>"); | ||
MODULE_AUTHOR("Mark D. Studebaker <[email protected]>"); | ||
MODULE_DESCRIPTION("ALI15X3 SMBus driver"); | ||
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 |
---|---|---|
|
@@ -442,6 +442,7 @@ static struct platform_driver em_i2c_driver = { | |
module_platform_driver(em_i2c_driver); | ||
|
||
MODULE_DESCRIPTION("EMEV2 I2C bus driver"); | ||
MODULE_AUTHOR("Ian Molton and Wolfram Sang <[email protected]>"); | ||
MODULE_AUTHOR("Ian Molton"); | ||
MODULE_AUTHOR("Wolfram Sang <[email protected]>"); | ||
MODULE_LICENSE("GPL v2"); | ||
MODULE_DEVICE_TABLE(of, em_i2c_ids); |
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 |
---|---|---|
|
@@ -1986,7 +1986,8 @@ static void __exit i2c_i801_exit(void) | |
pci_unregister_driver(&i801_driver); | ||
} | ||
|
||
MODULE_AUTHOR("Mark D. Studebaker <[email protected]>, Jean Delvare <[email protected]>"); | ||
MODULE_AUTHOR("Mark D. Studebaker <[email protected]>"); | ||
MODULE_AUTHOR("Jean Delvare <[email protected]>"); | ||
MODULE_DESCRIPTION("I801 SMBus driver"); | ||
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
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 |
---|---|---|
|
@@ -1032,7 +1032,7 @@ static struct pci_driver piix4_driver = { | |
|
||
module_pci_driver(piix4_driver); | ||
|
||
MODULE_AUTHOR("Frodo Looijaard <[email protected]> and " | ||
"Philip Edelbrock <[email protected]>"); | ||
MODULE_AUTHOR("Frodo Looijaard <[email protected]>"); | ||
MODULE_AUTHOR("Philip Edelbrock <[email protected]>"); | ||
MODULE_DESCRIPTION("PIIX4 SMBus driver"); | ||
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 |
---|---|---|
|
@@ -781,7 +781,8 @@ static void __exit i2c_adap_pnx_exit(void) | |
platform_driver_unregister(&i2c_pnx_driver); | ||
} | ||
|
||
MODULE_AUTHOR("Vitaly Wool, Dennis Kovalev <[email protected]>"); | ||
MODULE_AUTHOR("Vitaly Wool"); | ||
MODULE_AUTHOR("Dennis Kovalev <[email protected]>"); | ||
MODULE_DESCRIPTION("I2C driver for Philips IP3204-based I2C busses"); | ||
MODULE_LICENSE("GPL"); | ||
MODULE_ALIAS("platform:pnx-i2c"); | ||
|
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 |
---|---|---|
|
@@ -180,6 +180,7 @@ static void __exit i2c_sibyte_exit(void) | |
module_init(i2c_sibyte_init); | ||
module_exit(i2c_sibyte_exit); | ||
|
||
MODULE_AUTHOR("Kip Walker (Broadcom Corp.), Steven J. Hill <[email protected]>"); | ||
MODULE_AUTHOR("Kip Walker (Broadcom Corp.)"); | ||
MODULE_AUTHOR("Steven J. Hill <[email protected]>"); | ||
MODULE_DESCRIPTION("SMBus adapter routines for SiByte boards"); | ||
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 |
---|---|---|
|
@@ -470,6 +470,6 @@ static struct platform_driver i2c_sirfsoc_driver = { | |
module_platform_driver(i2c_sirfsoc_driver); | ||
|
||
MODULE_DESCRIPTION("SiRF SoC I2C master controller driver"); | ||
MODULE_AUTHOR("Zhiwu Song <[email protected]>, " | ||
"Xiangzhen Ye <[email protected]>"); | ||
MODULE_AUTHOR("Zhiwu Song <[email protected]>"); | ||
MODULE_AUTHOR("Xiangzhen Ye <[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 |
---|---|---|
|
@@ -489,9 +489,9 @@ static void __exit i2c_vt596_exit(void) | |
} | ||
} | ||
|
||
MODULE_AUTHOR("Kyosti Malkki <[email protected]>, " | ||
"Mark D. Studebaker <[email protected]> and " | ||
"Jean Delvare <[email protected]>"); | ||
MODULE_AUTHOR("Kyosti Malkki <[email protected]>"); | ||
MODULE_AUTHOR("Mark D. Studebaker <[email protected]>"); | ||
MODULE_AUTHOR("Jean Delvare <[email protected]>"); | ||
MODULE_DESCRIPTION("vt82c596 SMBus driver"); | ||
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 |
---|---|---|
|
@@ -761,8 +761,8 @@ static void __exit i2c_dev_exit(void) | |
unregister_chrdev_region(MKDEV(I2C_MAJOR, 0), I2C_MINORS); | ||
} | ||
|
||
MODULE_AUTHOR("Frodo Looijaard <[email protected]> and " | ||
"Simon G. Vogl <[email protected]>"); | ||
MODULE_AUTHOR("Frodo Looijaard <[email protected]>"); | ||
MODULE_AUTHOR("Simon G. Vogl <[email protected]>"); | ||
MODULE_DESCRIPTION("I2C /dev entries driver"); | ||
MODULE_LICENSE("GPL"); | ||
|
||
|