diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-20 14:23:02 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-20 19:58:46 +0900 |
commit | 6c48acfb2affa8b2aed810bb67888e0d1720a884 (patch) | |
tree | 38549e9e36cf0c3e03be3312d33be92cbe874e5b /drivers/regulator/da9210-regulator.c | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) | |
download | linux-rt-6c48acfb2affa8b2aed810bb67888e0d1720a884.tar.gz |
regulator: da9210: Remove redundant error message
kzalloc prints its own OOM message upon failure.
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/da9210-regulator.c')
-rw-r--r-- | drivers/regulator/da9210-regulator.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/regulator/da9210-regulator.c b/drivers/regulator/da9210-regulator.c index 6f5ecbe1132e..7a320dd11c46 100644 --- a/drivers/regulator/da9210-regulator.c +++ b/drivers/regulator/da9210-regulator.c @@ -134,11 +134,8 @@ static int da9210_i2c_probe(struct i2c_client *i2c, int error; chip = devm_kzalloc(&i2c->dev, sizeof(struct da9210), GFP_KERNEL); - if (NULL == chip) { - dev_err(&i2c->dev, - "Cannot kzalloc memory for regulator structure\n"); + if (!chip) return -ENOMEM; - } chip->regmap = devm_regmap_init_i2c(i2c, &da9210_regmap_config); if (IS_ERR(chip->regmap)) { |