diff options
author | Axel Lin <axel.lin@gmail.com> | 2011-12-29 04:03:20 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-12-29 05:40:19 -0500 |
commit | 32c78de8f17369def492ea3ddd785f0cc140af02 (patch) | |
tree | d1d57f47ae01b33c929d8425ceb03893d3d6e3ea /drivers | |
parent | bcda432194fc7c4a2dbe9d7146f00b4b21e66c8c (diff) |
regulator: Fix checking return value of create_regulator
create_regulator() returns NULL on fail.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/core.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/regulator/core.c b/drivers/regulator/core.c index 6cb9d399aff..e70e15c4aa2 100644 --- a/drivers/regulator/core.c +++ b/drivers/regulator/core.c | |||
@@ -985,9 +985,8 @@ static int set_supply(struct regulator_dev *rdev, | |||
985 | rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev)); | 985 | rdev_info(rdev, "supplied by %s\n", rdev_get_name(supply_rdev)); |
986 | 986 | ||
987 | rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY"); | 987 | rdev->supply = create_regulator(supply_rdev, &rdev->dev, "SUPPLY"); |
988 | if (IS_ERR(rdev->supply)) { | 988 | if (rdev->supply == NULL) { |
989 | err = PTR_ERR(rdev->supply); | 989 | err = -ENOMEM; |
990 | rdev->supply = NULL; | ||
991 | return err; | 990 | return err; |
992 | } | 991 | } |
993 | 992 | ||