diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-11-28 14:06:31 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-12-09 08:54:22 -0800 |
commit | 13e15d58a10698371a7d10b5dcdf2ce6630c35ef (patch) | |
tree | 9ea8babb413a48b67248183f825c87828ab5115c /drivers | |
parent | 4148011316b640f48be6b7dd9005033b5347172c (diff) | |
download | lwn-13e15d58a10698371a7d10b5dcdf2ce6630c35ef.tar.gz lwn-13e15d58a10698371a7d10b5dcdf2ce6630c35ef.zip |
regulator: aat2870: Fix the logic of checking if no id is matched in aat2870_get_regulator
commit d4d6373c1109b11c8118340be97ae31b8f94d66a upstream.
In current implementation, the pointer ri is not NULL if no id is matched.
Fix it by checking i == ARRAY_SIZE(aat2870_regulators) if no id is matched.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/aat2870-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/aat2870-regulator.c b/drivers/regulator/aat2870-regulator.c index cd4104542f0d..11d1ab4abefa 100644 --- a/drivers/regulator/aat2870-regulator.c +++ b/drivers/regulator/aat2870-regulator.c @@ -159,7 +159,7 @@ static struct aat2870_regulator *aat2870_get_regulator(int id) break; } - if (!ri) + if (i == ARRAY_SIZE(aat2870_regulators)) return NULL; ri->enable_addr = AAT2870_LDO_EN; |