diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-11-30 16:24:18 +0300 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2009-12-01 13:24:19 +0300 |
commit | 7716977b6ae5a0cdd0afab5c6035c4d0ce53f599 (patch) | |
tree | 9534843e6f393dba12bb843e1d846dc19d5349b1 /drivers/mfd/wm831x-core.c | |
parent | 29e553631b2a0d4eebd23db630572e1027a9967a (diff) | |
download | linux-7716977b6ae5a0cdd0afab5c6035c4d0ce53f599.tar.xz |
mfd: Correct WM831X_MAX_ISEL_VALUE
There was confusion between the array size and the highest ISEL
value possible.
Reported-by: Dan Carpenter <error27@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/mfd/wm831x-core.c')
-rw-r--r-- | drivers/mfd/wm831x-core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/wm831x-core.c b/drivers/mfd/wm831x-core.c index 49b7885c2702..7f27576ca046 100644 --- a/drivers/mfd/wm831x-core.c +++ b/drivers/mfd/wm831x-core.c @@ -29,7 +29,7 @@ /* Current settings - values are 2*2^(reg_val/4) microamps. These are * exported since they are used by multiple drivers. */ -int wm831x_isinkv_values[WM831X_ISINK_MAX_ISEL] = { +int wm831x_isinkv_values[WM831X_ISINK_MAX_ISEL + 1] = { 2, 2, 3, |