diff options
author | David Lechner <david@lechnology.com> | 2018-01-23 16:57:34 -0600 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2018-05-16 09:21:48 +0100 |
commit | 408d1d570a63394785221ffa4131ee85b53df7b1 (patch) | |
tree | e8956f9a1406762a149a9d015a0827fbc70939f4 /drivers/mfd/syscon.c | |
parent | 16c2004d9e4d6e5bc0a81fa811eb6ebab4fb6307 (diff) | |
download | linux-408d1d570a63394785221ffa4131ee85b53df7b1.tar.bz2 |
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.c | 1 |
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; |