diff options
| author | Charles Keepax <ckeepax@opensource.wolfsonmicro.com> | 2015-10-20 10:25:58 +0100 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2016-08-26 20:46:21 +0200 |
| commit | 75bef4dcc72f6aafcb2c8d56d089a605c6e604fd (patch) | |
| tree | 4904966f04a10a6656b5bbf6ecea3cf24686e81b /include/sound | |
| parent | c883a1e846802e196267f5774a9c317930443b31 (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: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Stefan Guendhoer <stefan@guendhoer.com>
Diffstat (limited to 'include/sound')
| -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 898be3a8d..6d8f8fba3 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 |
