aboutsummaryrefslogtreecommitdiffstats
path: root/drivers
diff options
authorUwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>2026-05-27 17:43:01 +0200
committerLinus Walleij <linusw@kernel.org>2026-05-29 22:47:44 +0200
commit3a7a1e491bac52a42693b2613533035f0eff85eb (patch)
tree337886d654936b112f6ed13242bb25732a5b2f01 /drivers
parent9b97162c7757463bf3ea4afa1d68722c9a3e6bdc (diff)
downloadlinux-next-history-3a7a1e491bac52a42693b2613533035f0eff85eb.tar.gz
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pinctrl/pinctrl-max77620.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/pinctrl/pinctrl-max77620.c b/drivers/pinctrl/pinctrl-max77620.c
index acb945a257436..c47eccce7dc00 100644
--- a/drivers/pinctrl/pinctrl-max77620.c
+++ b/drivers/pinctrl/pinctrl-max77620.c
@@ -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);