Commit 088d862c authored by Axel Lin's avatar Axel Lin Committed by Lee Jones

mfd: tps6586x: Fix up define for TPS6586X_MAX_REGISTER

The latest valid register is TPS6586X_VERSIONCRC.
Signed-off-by: default avatarAxel Lin <axel.lin@ingics.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 6887b042
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
#define TPS6586X_VERSIONCRC 0xcd #define TPS6586X_VERSIONCRC 0xcd
/* Maximum register */ /* Maximum register */
#define TPS6586X_MAX_REGISTER (TPS6586X_VERSIONCRC + 1) #define TPS6586X_MAX_REGISTER TPS6586X_VERSIONCRC
struct tps6586x_irq_data { struct tps6586x_irq_data {
u8 mask_reg; u8 mask_reg;
...@@ -467,7 +467,7 @@ static bool is_volatile_reg(struct device *dev, unsigned int reg) ...@@ -467,7 +467,7 @@ static bool is_volatile_reg(struct device *dev, unsigned int reg)
static const struct regmap_config tps6586x_regmap_config = { static const struct regmap_config tps6586x_regmap_config = {
.reg_bits = 8, .reg_bits = 8,
.val_bits = 8, .val_bits = 8,
.max_register = TPS6586X_MAX_REGISTER - 1, .max_register = TPS6586X_MAX_REGISTER,
.volatile_reg = is_volatile_reg, .volatile_reg = is_volatile_reg,
.cache_type = REGCACHE_RBTREE, .cache_type = REGCACHE_RBTREE,
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment