diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2019-11-13 12:22:26 +0200 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-11-13 11:07:40 +0000 |
commit | edfaeaf742b4c3ee6f58e0b8be95b5296a3375e8 (patch) | |
tree | de7d6a77377b2e399cda65d9147a2957de1ab65c | |
parent | de98a43eb76b8442c02a2fe31c2a50d72cf6ded3 (diff) | |
download | linux-edfaeaf742b4c3ee6f58e0b8be95b5296a3375e8.tar.bz2 |
Revert "mfd: syscon: Set name of regmap_config"
This reverts commit 500f9ff518cf55930c670b0e2b8901caf70a7548.
The original commit is a duplication of the exactly previously added
commit 408d1d570a63 ("mfd: syscon: Set regmap name to DT node name").
Revert the unnecessary later one.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/syscon.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c index 660723276481..e22197c832e8 100644 --- a/drivers/mfd/syscon.c +++ b/drivers/mfd/syscon.c @@ -105,7 +105,6 @@ static struct syscon *of_syscon_register(struct device_node *np, bool check_clk) 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; - syscon_config.name = of_node_full_name(np); regmap = regmap_init_mmio(NULL, base, &syscon_config); if (IS_ERR(regmap)) { |