diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-08-08 17:08:11 +0300 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2022-09-29 19:06:57 +0100 |
commit | 72a95859728a7866522e6633818bebc1c2519b17 (patch) | |
tree | 0d08f9804ae729c7cb18541041c2260ca0ba656f /drivers/mfd | |
parent | 02010cf0093629b9eeadade1f2684d85eaa3390f (diff) |
mfd: syscon: Remove repetition of the regmap_get_val_endian()
Since the commit 0dbdb76c0ca8 ("regmap: mmio: Parse endianness
definitions from DT") regmap MMIO parses DT itsef, no need to
repeat this in the caller(s).
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Lee Jones <lee@kernel.org>
Link: https://lore.kernel.org/r/20220808140811.26734-1-andriy.shevchenko@linux.intel.com
Diffstat (limited to 'drivers/mfd')
-rw-r--r-- | drivers/mfd/syscon.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/drivers/mfd/syscon.c b/drivers/mfd/syscon.c index bdb2ce7ff03b..9489e80e905a 100644 --- a/drivers/mfd/syscon.c +++ b/drivers/mfd/syscon.c @@ -66,14 +66,6 @@ static struct syscon *of_syscon_register(struct device_node *np, bool check_clk) goto err_map; } - /* Parse the device's DT node for an endianness specification */ - if (of_property_read_bool(np, "big-endian")) - syscon_config.val_format_endian = REGMAP_ENDIAN_BIG; - else if (of_property_read_bool(np, "little-endian")) - syscon_config.val_format_endian = REGMAP_ENDIAN_LITTLE; - else if (of_property_read_bool(np, "native-endian")) - syscon_config.val_format_endian = REGMAP_ENDIAN_NATIVE; - /* * search for reg-io-width property in DT. If it is not provided, * default to 4 bytes. regmap_init_mmio will return an error if values |