diff options
| author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2015-10-20 10:25:58 +0100 |
|---|---|---|
| committer | Luis Henriques <luis.henriques@canonical.com> | 2015-11-16 11:27:03 +0000 |
| commit | a9157a227206c0bcc57ed4d09a2b2888a90d3b8d (patch) | |
| tree | 9287139d509ec8c0e33bc26997f6750633831cdf /include | |
| parent | 3c66f4943f74c1a6e6db9a4099d9328f8feb26bc (diff) | |
ASoC: wm8904: Correct number of EQ registers
commit 97aff2c03a1e4d343266adadb52313613efb027f upstream.
There are 24 EQ registers not 25, I suspect this bug came about because
the registers start at EQ1 not zero. The bug is relatively harmless as
the extra register written is an unused one.
Signed-off-by: Charles Keepax <ckeepax@opensource.wolfsonmicro.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
Diffstat (limited to 'include')
| -rw-r--r-- | include/sound/wm8904.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/wm8904.h b/include/sound/wm8904.h index 898be3a8db9a..6d8f8fba3341 100644 --- a/include/sound/wm8904.h +++ b/include/sound/wm8904.h @@ -119,7 +119,7 @@ #define WM8904_MIC_REGS 2 #define WM8904_GPIO_REGS 4 #define WM8904_DRC_REGS 4 -#define WM8904_EQ_REGS 25 +#define WM8904_EQ_REGS 24 /** * DRC configurations are specified with a label and a set of register |
