diff options
| author | Vincent Stehlé <vincent.stehle@laposte.net> | 2017-04-09 16:05:05 -0400 |
|---|---|---|
| committer | Mark Brown <broonie@kernel.org> | 2017-04-10 12:31:17 -0400 |
| commit | 0c08aaf873174c95e674cf21ffcd041c589d2e5b (patch) | |
| tree | c55f79b5cce55dd49c6147ceac0fc9b7978be4d2 /include/linux/platform_data | |
| parent | d00b74613fb18dfd0a5aa99270ee2e72d5c808d7 (diff) | |
regulator: isl9305: fix array size
ISL9305_MAX_REGULATOR is the last index used to access the init_data[]
array, so we need to add one to this last index to obtain the necessary
array size.
This fixes the following smatch error:
drivers/regulator/isl9305.c:160 isl9305_i2c_probe() error: buffer overflow 'pdata->init_data' 3 <= 3
Fixes: dec38b5ce6a9edb4 ("regulator: isl9305: Add Intersil ISL9305/H driver")
Signed-off-by: Vincent Stehlé <vincent.stehle@laposte.net>
Cc: Mark Brown <broonie@kernel.org>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'include/linux/platform_data')
| -rw-r--r-- | include/linux/platform_data/isl9305.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/platform_data/isl9305.h b/include/linux/platform_data/isl9305.h index 1419133fa69e..4ac1a070af0a 100644 --- a/include/linux/platform_data/isl9305.h +++ b/include/linux/platform_data/isl9305.h | |||
| @@ -24,7 +24,7 @@ | |||
| 24 | struct regulator_init_data; | 24 | struct regulator_init_data; |
| 25 | 25 | ||
| 26 | struct isl9305_pdata { | 26 | struct isl9305_pdata { |
| 27 | struct regulator_init_data *init_data[ISL9305_MAX_REGULATOR]; | 27 | struct regulator_init_data *init_data[ISL9305_MAX_REGULATOR + 1]; |
| 28 | }; | 28 | }; |
| 29 | 29 | ||
| 30 | #endif | 30 | #endif |
