pinctrl: 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. Also don't use a comma
directly before a closing brace in the other entries.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
Signed-off-by: Linus Walleij <linusw@kernel.org>
This commit is contained in:
Uwe Kleine-König (The Capable Hub) 2026-05-27 17:43:01 +02:00 committed by Linus Walleij
parent 9b97162c77
commit 3a7a1e491b

View File

@ -645,9 +645,9 @@ static const struct dev_pm_ops max77620_pinctrl_pm_ops = {
};
static const struct platform_device_id max77620_pinctrl_devtype[] = {
{ .name = "max77620-pinctrl", },
{ .name = "max20024-pinctrl", },
{},
{ .name = "max77620-pinctrl" },
{ .name = "max20024-pinctrl" },
{ }
};
MODULE_DEVICE_TABLE(platform, max77620_pinctrl_devtype);