Skip to content

Commit 3cbbe1b

Browse files
charmitrosre
authored andcommitted
power: supply: Use multiple MODULE_AUTHOR statements
This resolves checkpatch warning "quoted string split across lines" on: 1640: WARNING: quoted string split across lines 1641: WARNING: quoted string split across lines The motive to use multiple MODULE_AUTHOR statements came from this comment from "include/linux/module.h": /* * Author(s), use "Name <email>" or just "Name", for multiple * authors use multiple MODULE_AUTHOR() statements/lines. */ #define MODULE_AUTHOR(_author) MODULE_INFO(author, _author) Signed-off-by: Charalampos Mitrodimas <charmitro@posteo.net> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
1 parent c73cc44 commit 3cbbe1b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

drivers/power/supply/power_supply_core.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1637,6 +1637,6 @@ subsys_initcall(power_supply_class_init);
16371637
module_exit(power_supply_class_exit);
16381638

16391639
MODULE_DESCRIPTION("Universal power supply monitor class");
1640-
MODULE_AUTHOR("Ian Molton <spyro@f2s.com>, "
1641-
"Szabolcs Gyurko, "
1642-
"Anton Vorontsov <cbou@mail.ru>");
1640+
MODULE_AUTHOR("Ian Molton <spyro@f2s.com>");
1641+
MODULE_AUTHOR("Szabolcs Gyurko");
1642+
MODULE_AUTHOR("Anton Vorontsov <cbou@mail.ru>");

0 commit comments

Comments
 (0)