Skip to content

Commit

Permalink
i2c: Use separate MODULE_AUTHOR() statements for multiple authors
Browse files Browse the repository at this point in the history
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
jhnikula authored and wsakernel committed Jul 4, 2020
1 parent 9ebcfad commit f80531c
Show file tree
Hide file tree
Showing 13 changed files with 30 additions and 24 deletions.
4 changes: 2 additions & 2 deletions drivers/i2c/algos/i2c-algo-pca.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down
8 changes: 4 additions & 4 deletions drivers/i2c/busses/i2c-ali1535.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
6 changes: 3 additions & 3 deletions drivers/i2c/busses/i2c-ali15x3.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
3 changes: 2 additions & 1 deletion drivers/i2c/busses/i2c-emev2.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
3 changes: 2 additions & 1 deletion drivers/i2c/busses/i2c-i801.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down
3 changes: 2 additions & 1 deletion drivers/i2c/busses/i2c-nomadik.c
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,7 @@ static void __exit nmk_i2c_exit(void)
subsys_initcall(nmk_i2c_init);
module_exit(nmk_i2c_exit);

MODULE_AUTHOR("Sachin Verma, Srinidhi KASAGAR");
MODULE_AUTHOR("Sachin Verma");
MODULE_AUTHOR("Srinidhi KASAGAR");
MODULE_DESCRIPTION("Nomadik/Ux500 I2C driver");
MODULE_LICENSE("GPL");
4 changes: 2 additions & 2 deletions drivers/i2c/busses/i2c-piix4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
3 changes: 2 additions & 1 deletion drivers/i2c/busses/i2c-pnx.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down
3 changes: 2 additions & 1 deletion drivers/i2c/busses/i2c-sh_mobile.c
Original file line number Diff line number Diff line change
Expand Up @@ -932,6 +932,7 @@ static void __exit sh_mobile_i2c_adap_exit(void)
module_exit(sh_mobile_i2c_adap_exit);

MODULE_DESCRIPTION("SuperH Mobile I2C Bus Controller driver");
MODULE_AUTHOR("Magnus Damm and Wolfram Sang");
MODULE_AUTHOR("Magnus Damm");
MODULE_AUTHOR("Wolfram Sang");
MODULE_LICENSE("GPL v2");
MODULE_ALIAS("platform:i2c-sh_mobile");
3 changes: 2 additions & 1 deletion drivers/i2c/busses/i2c-sibyte.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
4 changes: 2 additions & 2 deletions drivers/i2c/busses/i2c-sirf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");
6 changes: 3 additions & 3 deletions drivers/i2c/busses/i2c-viapro.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down
4 changes: 2 additions & 2 deletions drivers/i2c/i2c-dev.c
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down

0 comments on commit f80531c

Please sign in to comment.