From: Uwe Kleine-König (The Capable Hub) Date: Wed, 27 May 2026 14:57:29 +0000 (+0200) Subject: gpio: max77620: Unify usage of space and comma in platform_device_id array X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=a8754838f83a9905af516f38dd2633744a94f71a;p=thirdparty%2Fkernel%2Flinux.git gpio: max77620: Unify usage of space and comma in platform_device_id array The most accepted style for the array terminator is to use a single space between the curly braces and no trailing comma. Signed-off-by: Uwe Kleine-König (The Capable Hub) Reviewed-by: Linus Walleij Link: https://patch.msgid.link/985c86e80f35a944a4712f0c2ac8dd795868cdfb.1779893336.git.u.kleine-koenig@baylibre.com [Bartosz: Fixed Uwe's S-B] Signed-off-by: Bartosz Golaszewski --- diff --git a/drivers/gpio/gpio-max77620.c b/drivers/gpio/gpio-max77620.c index e6c85411c695e..2bf3b55a61b5e 100644 --- a/drivers/gpio/gpio-max77620.c +++ b/drivers/gpio/gpio-max77620.c @@ -367,7 +367,7 @@ static int max77620_gpio_probe(struct platform_device *pdev) static const struct platform_device_id max77620_gpio_devtype[] = { { .name = "max77620-gpio", }, { .name = "max20024-gpio", }, - {}, + { } }; MODULE_DEVICE_TABLE(platform, max77620_gpio_devtype);