From f6dd64d61aba6d038434ce17e05fdcd4b67e4076 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Filippo=20Muscher=C3=A0?= Date: Mon, 2 Feb 2026 14:13:03 +0100 Subject: [PATCH] i2c: amd8111: Remove spaces in MODULE_* macros MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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à Signed-off-by: Andi Shyti Link: https://lore.kernel.org/r/20260202131304.8524-1-filippo.muschera@gmail.com --- drivers/i2c/busses/i2c-amd8111.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/i2c/busses/i2c-amd8111.c b/drivers/i2c/busses/i2c-amd8111.c index 42a9b1221065..51e3660e51c6 100644 --- a/drivers/i2c/busses/i2c-amd8111.c +++ b/drivers/i2c/busses/i2c-amd8111.c @@ -17,7 +17,7 @@ #include MODULE_LICENSE("GPL"); -MODULE_AUTHOR ("Vojtech Pavlik "); +MODULE_AUTHOR("Vojtech Pavlik "); MODULE_DESCRIPTION("AMD8111 SMBus 2.0 driver"); struct amd_smbus { @@ -417,7 +417,7 @@ static const struct pci_device_id amd8111_ids[] = { { 0, } }; -MODULE_DEVICE_TABLE (pci, amd8111_ids); +MODULE_DEVICE_TABLE(pci, amd8111_ids); static int amd8111_probe(struct pci_dev *dev, const struct pci_device_id *id) { -- 2.30.2