aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd/syscon.c
diff options
context:
space:
mode:
authorDavid Lechner <david@lechnology.com>2018-01-23 16:57:34 -0600
committerLee Jones <lee.jones@linaro.org>2018-05-16 09:21:48 +0100
commit408d1d570a63394785221ffa4131ee85b53df7b1 (patch)
treee8956f9a1406762a149a9d015a0827fbc70939f4 /drivers/mfd/syscon.c
parentmfd: omap-usb-tll: Allocate driver data at once (diff)
downloadlinux-dev-408d1d570a63394785221ffa4131ee85b53df7b1.tar.xz
linux-dev-408d1d570a63394785221ffa4131ee85b53df7b1.zip
mfd: syscon: Set regmap name to DT node name
This sets the regmap name to the device tree node name. This is useful for debugging. Signed-off-by: David Lechner <david@lechnology.com> Acked-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/syscon.c')
-rw-r--r--drivers/mfd/syscon.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c
index 7eaa40bc703f..fc9ba0ea4e44 100644
--- a/drivers/mfd/syscon.c
+++ b/drivers/mfd/syscon.c
@@ -106,6 +106,7 @@ static struct syscon *of_syscon_register(struct device_node *np)
}
}
+ syscon_config.name = of_node_full_name(np);
syscon_config.reg_stride = reg_io_width;
syscon_config.val_bits = reg_io_width * 8;
syscon_config.max_register = resource_size(&res) - reg_io_width;