In preparation to remove the node name pointer from struct device_node,
convert printf users to use the %pOFn format specifier.

Cc: Sakari Ailus <[email protected]>
Cc: Jacek Anaszewski <[email protected]>
Cc: Pavel Machek <[email protected]>
Cc: [email protected]
Signed-off-by: Rob Herring <[email protected]>
---
 drivers/leds/leds-as3645a.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/leds/leds-as3645a.c b/drivers/leds/leds-as3645a.c
index f883616d9e60..98a69b1a43f9 100644
--- a/drivers/leds/leds-as3645a.c
+++ b/drivers/leds/leds-as3645a.c
@@ -529,7 +529,7 @@ static int as3645a_parse_node(struct as3645a *flash,
                strlcpy(names->flash, name, sizeof(names->flash));
        else
                snprintf(names->flash, sizeof(names->flash),
-                        "%s:flash", node->name);
+                        "%pOFn:flash", node);
 
        rval = of_property_read_u32(flash->flash_node, "flash-timeout-us",
                                    &cfg->flash_timeout_us);
@@ -573,7 +573,7 @@ static int as3645a_parse_node(struct as3645a *flash,
                strlcpy(names->indicator, name, sizeof(names->indicator));
        else
                snprintf(names->indicator, sizeof(names->indicator),
-                        "%s:indicator", node->name);
+                        "%pOFn:indicator", node);
 
        rval = of_property_read_u32(flash->indicator_node, "led-max-microamp",
                                    &cfg->indicator_max_ua);
-- 
2.17.1

Reply via email to