blob: 4dcf26a1df17d677047cd29ad16cc38f46b7d61e [file] [log] [blame]
From cec290b6c9c04cf606ddf442bea120d92b4221f2 Mon Sep 17 00:00:00 2001
From: Nicholas Lowell <nlowell@lexmark.com>
Date: Mon, 19 Mar 2018 09:23:14 -0400
Subject: [PATCH 0788/1795] regulator: giving regulator controlling gpios a
non-empty label when used through the devicetree.
When the label is empty, it causes missing information and limits diagnostics
for instances such as 'cat /sys/kernel/debug/gpio'
Setting the label to the regulator supply_name will point to the device
using the gpio(s).
Signed-off-by: Nicholas Lowell <nlowell@lexmark.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
(cherry picked from commit 37ad490bab09b7c218e37b570069cf188f2616e7)
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
drivers/regulator/gpio-regulator.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/regulator/gpio-regulator.c b/drivers/regulator/gpio-regulator.c
index a2eb50719c7b..a86b8997bb54 100644
--- a/drivers/regulator/gpio-regulator.c
+++ b/drivers/regulator/gpio-regulator.c
@@ -196,6 +196,7 @@ of_get_gpio_regulator_config(struct device *dev, struct device_node *np,
break;
}
config->gpios[i].gpio = gpio;
+ config->gpios[i].label = config->supply_name;
if (proplen > 0) {
of_property_read_u32_index(np, "gpios-states",
i, &ret);
--
2.19.0