From: Sachin Kamat Date: Tue, 18 Feb 2014 10:41:08 +0000 (+0530) Subject: regulator: act8865: Remove redundant error message X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5ee77ef27e4fb1cdc2b4f17c362e8a0c9245dc89;p=linux-beck.git regulator: act8865: Remove redundant error message kzalloc prints its own OOM message upon failure. Signed-off-by: Sachin Kamat Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/act8865-regulator.c b/drivers/regulator/act8865-regulator.c index 2d2c3b004ab7..a5ff30c8a1e3 100644 --- a/drivers/regulator/act8865-regulator.c +++ b/drivers/regulator/act8865-regulator.c @@ -228,11 +228,8 @@ static int act8865_pdata_from_dt(struct device *dev, pdata->regulators = devm_kzalloc(dev, sizeof(struct act8865_regulator_data) * ARRAY_SIZE(act8865_matches), GFP_KERNEL); - if (!pdata->regulators) { - dev_err(dev, "%s: failed to allocate act8865 registor\n", - __func__); + if (!pdata->regulators) return -ENOMEM; - } pdata->num_regulators = matched; regulator = pdata->regulators;