Previously there was no output for the regmap's registers
in debugfs due to missing "max_register" property in regmap
configuration.
Signed-off-by: Andre Werner <[email protected]>
---
drivers/mfd/tps65086.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mfd/tps65086.c b/drivers/mfd/tps65086.c
index 152179ee11ca..fdce81b33f60 100644
--- a/drivers/mfd/tps65086.c
+++ b/drivers/mfd/tps65086.c
@@ -36,6 +36,7 @@ static const struct regmap_config tps65086_regmap_config = {
.val_bits = 8,
.cache_type = REGCACHE_MAPLE,
.volatile_table = &tps65086_volatile_table,
+ .max_register = TPS65086_OC_STATUS,
};
static const struct regmap_irq tps65086_irqs[] = {
--
2.42.1
On Tue, 21 Nov 2023 07:32:59 +0100, Andre Werner wrote:
> Previously there was no output for the regmap's registers
> in debugfs due to missing "max_register" property in regmap
> configuration.
>
>
Applied, thanks!
[1/1] mfd: tps65086: Enable register view in debugfs
commit: 0f3f51ebc4a8f096c1bd046115458b7499cf535e
--
Lee Jones [李琼斯]