diff options
author | Axel Lin <[email protected]> | 2015-07-23 22:56:04 +0800 |
---|---|---|
committer | Mark Brown <[email protected]> | 2015-07-23 16:46:31 +0100 |
commit | 95f1044f5674b53f67e0933abff228c594792f4c (patch) | |
tree | 7a20ea1cc56c319f0ab756288428725c51c2b21b | |
parent | bc0195aad0daa2ad5b0d76cce22b167bc3435590 (diff) |
ASoC: tas2552: Fix off-by-one for max_register setting
The latest valid register is TAS2552_VBAT_DATA.
Signed-off-by: Axel Lin <[email protected]>
Acked-by: Dan Murphy<[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/codecs/tas2552.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/tas2552.h b/sound/soc/codecs/tas2552.h index 5746f8fd0afd..e34752b8a299 100644 --- a/sound/soc/codecs/tas2552.h +++ b/sound/soc/codecs/tas2552.h @@ -42,7 +42,7 @@ #define TAS2552_BOOST_APT_CTRL 0x14 #define TAS2552_VER_NUM 0x16 #define TAS2552_VBAT_DATA 0x19 -#define TAS2552_MAX_REG 0x20 +#define TAS2552_MAX_REG TAS2552_VBAT_DATA /* CFG1 Register Masks */ #define TAS2552_DEV_RESET (1 << 0) |