From: David Lechner Date: Tue, 23 Jan 2018 22:57:34 +0000 (-0600) Subject: mfd: syscon: Set regmap name to DT node name X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=408d1d570a63;p=linux.git 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 Acked-by: Arnd Bergmann Signed-off-by: Lee Jones --- diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c index 7eaa40bc703fd..fc9ba0ea4e449 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;