Skip to content

Commit f6dd64d

Browse files
FilippoMuscheraAndi Shyti
authored andcommitted
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
1 parent 9eb9f7c commit f6dd64d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drivers/i2c/busses/i2c-amd8111.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#include <linux/io.h>
1818

1919
MODULE_LICENSE("GPL");
20-
MODULE_AUTHOR ("Vojtech Pavlik <vojtech@suse.cz>");
20+
MODULE_AUTHOR("Vojtech Pavlik <vojtech@suse.cz>");
2121
MODULE_DESCRIPTION("AMD8111 SMBus 2.0 driver");
2222

2323
struct amd_smbus {
@@ -417,7 +417,7 @@ static const struct pci_device_id amd8111_ids[] = {
417417
{ 0, }
418418
};
419419

420-
MODULE_DEVICE_TABLE (pci, amd8111_ids);
420+
MODULE_DEVICE_TABLE(pci, amd8111_ids);
421421

422422
static int amd8111_probe(struct pci_dev *dev, const struct pci_device_id *id)
423423
{

0 commit comments

Comments
 (0)