commit: 3fcc0afbb9c93f3599ba03273e59915670b6c2c2 From: Uk Kim <[email protected]> Date: Sun, 5 Dec 2010 17:32:16 +0900 Subject: [PATCH] ASoC: Fix off by one error in WM8994 EQ register bank size
Signed-off-by: Uk Kim <[email protected]> Acked-by: Liam Girdwood <[email protected]> Signed-off-by: Mark Brown <[email protected]> Cc: [email protected] --- include/linux/mfd/wm8994/pdata.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/linux/mfd/wm8994/pdata.h b/include/linux/mfd/wm8994/pdata.h index 5c51f36..add8a1b 100644 --- a/include/linux/mfd/wm8994/pdata.h +++ b/include/linux/mfd/wm8994/pdata.h @@ -29,7 +29,7 @@ struct wm8994_ldo_pdata { #define WM8994_CONFIGURE_GPIO 0x8000 #define WM8994_DRC_REGS 5 -#define WM8994_EQ_REGS 19 +#define WM8994_EQ_REGS 20 /** * DRC configurations are specified with a label and a set of register _______________________________________________ stable mailing list [email protected] http://linux.kernel.org/mailman/listinfo/stable
