pmic: stpmic1: support new prefix node name for regulator
authorPatrick Delaunay <patrick.delaunay@foss.st.com>
Thu, 27 Apr 2023 13:36:38 +0000 (15:36 +0200)
committerPatrice Chotard <patrice.chotard@foss.st.com>
Fri, 16 Jun 2023 09:16:31 +0000 (11:16 +0200)
The '_' character is discouraged in the node name, this patch adds the
new prefix of regulator subnode, with the '-' character, in STM32MP1 driver
to support the new  naming rule in Linux kernel device trees.

It is a preliminary patch before Linux device tree synchronization
for STMicroelectronics boards.

Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
drivers/power/pmic/stpmic1.c

index 2c85410..8701d4f 100644 (file)
@@ -34,7 +34,9 @@ static const struct pmic_child_info stpmic1_children_info[] = {
        { .prefix = "ldo", .driver = "stpmic1_ldo" },
        { .prefix = "buck", .driver = "stpmic1_buck" },
        { .prefix = "vref_ddr", .driver = "stpmic1_vref_ddr" },
+       { .prefix = "vref-ddr", .driver = "stpmic1_vref_ddr" },
        { .prefix = "pwr_sw", .driver = "stpmic1_pwr_sw" },
+       { .prefix = "pwr-sw", .driver = "stpmic1_pwr_sw" },
        { .prefix = "boost", .driver = "stpmic1_boost" },
        { },
 };