mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v1] extcon: max14577: Use named initializers for the platform_device_id array
@ 2026-06-16 14:31 Uwe Kleine-König (The Capable Hub)
  2026-06-17  4:02 ` Krzysztof Kozlowski
  2026-07-20 12:25 ` Uwe Kleine-König (The Capable Hub)
  0 siblings, 2 replies; 3+ messages in thread
From: Uwe Kleine-König (The Capable Hub) @ 2026-06-16 14:31 UTC (permalink / raw)
  To: Chanwoo Choi, Krzysztof Kozlowski, MyungJoo Ham; +Cc: linux-kernel

Named initializers are better readable and more robust to changes of the
struct definition. This robustness is relevant for a planned change to
struct platform_device_id replacing .driver_data by an anonymous union.

While touching this array drop commas before closing curly braces on the
same line.

Signed-off-by: Uwe Kleine-König (The Capable Hub) <u.kleine-koenig@baylibre.com>
---
 drivers/extcon/extcon-max14577.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/extcon/extcon-max14577.c b/drivers/extcon/extcon-max14577.c
index 5476f48ed74b..2c1580ebfc61 100644
--- a/drivers/extcon/extcon-max14577.c
+++ b/drivers/extcon/extcon-max14577.c
@@ -771,8 +771,8 @@ static int max14577_muic_probe(struct platform_device *pdev)
 }
 
 static const struct platform_device_id max14577_muic_id[] = {
-	{ "max14577-muic", MAXIM_DEVICE_TYPE_MAX14577, },
-	{ "max77836-muic", MAXIM_DEVICE_TYPE_MAX77836, },
+	{ .name = "max14577-muic", .driver_data = MAXIM_DEVICE_TYPE_MAX14577 },
+	{ .name = "max77836-muic", .driver_data = MAXIM_DEVICE_TYPE_MAX77836 },
 	{ }
 };
 MODULE_DEVICE_TABLE(platform, max14577_muic_id);

base-commit: 8d6dbbbe3ba62de0a63e962ee004afb848c8e3ac
-- 
2.47.3


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2026-07-20 12:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-06-16 14:31 [PATCH v1] extcon: max14577: Use named initializers for the platform_device_id array Uwe Kleine-König (The Capable Hub)
2026-06-17  4:02 ` Krzysztof Kozlowski
2026-07-20 12:25 ` Uwe Kleine-König (The Capable Hub)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®