diff options
author | Wolfram Sang <wsa+renesas@sang-engineering.com> | 2024-07-31 00:01:59 +0200 |
---|---|---|
committer | Andi Shyti <andi.shyti@kernel.org> | 2024-09-10 00:33:52 +0200 |
commit | 1dc8baa408a2e873f69fc356fbbc0bddb7813839 (patch) | |
tree | b919edc6f8ae0dcb238e62cb8d947c4267765a8f /drivers/i2c/busses/i2c-pnx.c | |
parent | 4fec76e0985c638f3b9bb628a28b79b1658ffcca (diff) | |
download | lwn-1dc8baa408a2e873f69fc356fbbc0bddb7813839.tar.gz lwn-1dc8baa408a2e873f69fc356fbbc0bddb7813839.zip |
i2c: don't use ',' after delimiters
Delimiters are meant to be last, no need for a ',' there. Remove a
superfluous newline in the ali1535 driver while here.
Signed-off-by: Wolfram Sang <wsa+renesas@sang-engineering.com>
Acked-by: Andrew Jeffery <andrew@codeconstruct.com.au>
Signed-off-by: Andi Shyti <andi.shyti@kernel.org>
Diffstat (limited to 'drivers/i2c/busses/i2c-pnx.c')
-rw-r--r-- | drivers/i2c/busses/i2c-pnx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-pnx.c b/drivers/i2c/busses/i2c-pnx.c index f448505d5468..1dafadda73af 100644 --- a/drivers/i2c/busses/i2c-pnx.c +++ b/drivers/i2c/busses/i2c-pnx.c @@ -721,7 +721,7 @@ static void i2c_pnx_remove(struct platform_device *pdev) #ifdef CONFIG_OF static const struct of_device_id i2c_pnx_of_match[] = { { .compatible = "nxp,pnx-i2c" }, - { }, + { } }; MODULE_DEVICE_TABLE(of, i2c_pnx_of_match); #endif |