Skip to content

Commit

Permalink
ASoC: wm8753: Drop wm8753_writeable function
Browse files Browse the repository at this point in the history
When .max_register is set and .writeable_reg is not implement, registers
between 0 and .max_register are writeable. This is the same as current
implementation of wm8753_writeable(), so just drop implementation for
.writeable_reg callback.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Axel Lin authored and Mark Brown committed Aug 5, 2015
1 parent bc0195a commit b970499
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions sound/soc/codecs/wm8753.c
Original file line number Diff line number Diff line change
Expand Up @@ -138,11 +138,6 @@ static bool wm8753_volatile(struct device *dev, unsigned int reg)
return reg == WM8753_RESET;
}

static bool wm8753_writeable(struct device *dev, unsigned int reg)
{
return reg <= WM8753_ADCTL2;
}

/* codec private data */
struct wm8753_priv {
struct regmap *regmap;
Expand Down Expand Up @@ -1510,7 +1505,6 @@ static const struct regmap_config wm8753_regmap = {
.val_bits = 9,

.max_register = WM8753_ADCTL2,
.writeable_reg = wm8753_writeable,
.volatile_reg = wm8753_volatile,

.cache_type = REGCACHE_RBTREE,
Expand Down

0 comments on commit b970499

Please sign in to comment.