Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

i2c: amd8111: Remove spaces in MODULE_* macros

Remove space between function name and open parenthesis in
MODULE_DEVICE_TABLE and MODULE_AUTHOR to comply with kernel
coding style.

Signed-off-by: Filippo Muscherà <filippo.muschera@gmail.com>
Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Link: https://lore.kernel.org/r/20260202131304.8524-1-filippo.muschera@gmail.com

authored by

Filippo Muscherà and committed by
Andi Shyti
f6dd64d6 9eb9f7c3

+2 -2
+2 -2
drivers/i2c/busses/i2c-amd8111.c
··· 17 17 #include <linux/io.h> 18 18 19 19 MODULE_LICENSE("GPL"); 20 - MODULE_AUTHOR ("Vojtech Pavlik <vojtech@suse.cz>"); 20 + MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>"); 21 21 MODULE_DESCRIPTION("AMD8111 SMBus 2.0 driver"); 22 22 23 23 struct amd_smbus { ··· 417 417 { 0, } 418 418 }; 419 419 420 - MODULE_DEVICE_TABLE (pci, amd8111_ids); 420 + MODULE_DEVICE_TABLE(pci, amd8111_ids); 421 421 422 422 static int amd8111_probe(struct pci_dev *dev, const struct pci_device_id *id) 423 423 {