Skip to content

Commit 6a57a21

Browse files
nabijaczleweliakpm00
authored andcommitted
Normalise "name (ad@dr)" MODULE_AUTHORs to "name <ad@dr>"
Found with git grep 'MODULE_AUTHOR(".*([^)]*@' Fixed with sed -i '/MODULE_AUTHOR(".*([^)]*@/{s/ (/ </g;s/)"/>"/;s/)and/> and/}' \ $(git grep -l 'MODULE_AUTHOR(".*([^)]*@') Also: in drivers/media/usb/siano/smsusb.c normalise ", INC" to ", Inc"; this is what every other MODULE_AUTHOR for this company says, and it's what the header says in drivers/sbus/char/openprom.c normalise a double-spaced separator; this is clearly copied from the copyright header, where the names are aligned on consecutive lines thusly: * Linux/SPARC PROM Configuration Driver * Copyright (C) 1996 Thomas K. Dyas ([email protected]) * Copyright (C) 1996 Eddie C. Dost ([email protected]) but the authorship branding is single-line Link: https://lkml.kernel.org/r/mk3geln4azm5binjjlfsgjepow4o73domjv6ajybws3tz22vb3@tarta.nabijaczleweli.xyz Signed-off-by: Ahelenia Ziemiańska <[email protected]> Cc: Joe Perches <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 9bea621 commit 6a57a21

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+46
-46
lines changed

arch/sparc/kernel/chmc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define PFX DRV_MODULE_NAME ": "
3131
#define DRV_MODULE_VERSION "0.2"
3232

33-
MODULE_AUTHOR("David S. Miller ([email protected])");
33+
MODULE_AUTHOR("David S. Miller <[email protected]>");
3434
MODULE_DESCRIPTION("UltraSPARC-III memory controller driver");
3535
MODULE_LICENSE("GPL");
3636
MODULE_VERSION(DRV_MODULE_VERSION);

arch/sparc/kernel/ds.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333

3434
static char version[] =
3535
DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
36-
MODULE_AUTHOR("David S. Miller ([email protected])");
36+
MODULE_AUTHOR("David S. Miller <[email protected]>");
3737
MODULE_DESCRIPTION("Sun LDOM domain services driver");
3838
MODULE_LICENSE("GPL");
3939
MODULE_VERSION(DRV_MODULE_VERSION);

drivers/block/sunvdc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
static char version[] =
3030
DRV_MODULE_NAME ".c:v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
31-
MODULE_AUTHOR("David S. Miller ([email protected])");
31+
MODULE_AUTHOR("David S. Miller <[email protected]>");
3232
MODULE_DESCRIPTION("Sun LDOM virtual disk client driver");
3333
MODULE_LICENSE("GPL");
3434
MODULE_VERSION(DRV_MODULE_VERSION);

drivers/char/hw_random/n2-drv.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
static char version[] =
3030
DRV_MODULE_NAME " v" DRV_MODULE_VERSION " (" DRV_MODULE_RELDATE ")\n";
3131

32-
MODULE_AUTHOR("David S. Miller ([email protected])");
32+
MODULE_AUTHOR("David S. Miller <[email protected]>");
3333
MODULE_DESCRIPTION("Niagara2 RNG driver");
3434
MODULE_LICENSE("GPL");
3535
MODULE_VERSION(DRV_MODULE_VERSION);

drivers/char/tpm/st33zp24/i2c.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ static struct i2c_driver st33zp24_i2c_driver = {
167167

168168
module_i2c_driver(st33zp24_i2c_driver);
169169

170-
MODULE_AUTHOR("TPM support ([email protected])");
170+
MODULE_AUTHOR("TPM support <[email protected]>");
171171
MODULE_DESCRIPTION("STM TPM 1.2 I2C ST33 Driver");
172172
MODULE_VERSION("1.3.0");
173173
MODULE_LICENSE("GPL");

drivers/char/tpm/st33zp24/spi.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ static struct spi_driver st33zp24_spi_driver = {
284284

285285
module_spi_driver(st33zp24_spi_driver);
286286

287-
MODULE_AUTHOR("TPM support ([email protected])");
287+
MODULE_AUTHOR("TPM support <[email protected]>");
288288
MODULE_DESCRIPTION("STM TPM 1.2 SPI ST33 Driver");
289289
MODULE_VERSION("1.3.0");
290290
MODULE_LICENSE("GPL");

drivers/char/tpm/st33zp24/st33zp24.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -582,7 +582,7 @@ int st33zp24_pm_resume(struct device *dev)
582582
EXPORT_SYMBOL(st33zp24_pm_resume);
583583
#endif
584584

585-
MODULE_AUTHOR("TPM support ([email protected])");
585+
MODULE_AUTHOR("TPM support <[email protected]>");
586586
MODULE_DESCRIPTION("ST33ZP24 TPM 1.2 driver");
587587
MODULE_VERSION("1.3.0");
588588
MODULE_LICENSE("GPL");

drivers/char/tpm/tpm-interface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ static void __exit tpm_exit(void)
524524
subsys_initcall(tpm_init);
525525
module_exit(tpm_exit);
526526

527-
MODULE_AUTHOR("Leendert van Doorn ([email protected])");
527+
MODULE_AUTHOR("Leendert van Doorn <[email protected]>");
528528
MODULE_DESCRIPTION("TPM Driver");
529529
MODULE_VERSION("2.0");
530530
MODULE_LICENSE("GPL");

drivers/char/tpm/tpm_atmel.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ static void __exit cleanup_atmel(void)
229229
module_init(init_atmel);
230230
module_exit(cleanup_atmel);
231231

232-
MODULE_AUTHOR("Leendert van Doorn ([email protected])");
232+
MODULE_AUTHOR("Leendert van Doorn <[email protected]>");
233233
MODULE_DESCRIPTION("TPM Driver");
234234
MODULE_VERSION("2.0");
235235
MODULE_LICENSE("GPL");

drivers/char/tpm/tpm_i2c_nuvoton.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,6 @@ static struct i2c_driver i2c_nuvoton_driver = {
654654

655655
module_i2c_driver(i2c_nuvoton_driver);
656656

657-
MODULE_AUTHOR("Dan Morav ([email protected])");
657+
MODULE_AUTHOR("Dan Morav <[email protected]>");
658658
MODULE_DESCRIPTION("Nuvoton TPM I2C Driver");
659659
MODULE_LICENSE("GPL");

0 commit comments

Comments
 (0)