Commit 5ee77ef2 authored by Sachin Kamat's avatar Sachin Kamat Committed by Mark Brown

regulator: act8865: Remove redundant error message

kzalloc prints its own OOM message upon failure.
Signed-off-by: default avatarSachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent 0079eb53
...@@ -228,11 +228,8 @@ static int act8865_pdata_from_dt(struct device *dev, ...@@ -228,11 +228,8 @@ static int act8865_pdata_from_dt(struct device *dev,
pdata->regulators = devm_kzalloc(dev, pdata->regulators = devm_kzalloc(dev,
sizeof(struct act8865_regulator_data) * sizeof(struct act8865_regulator_data) *
ARRAY_SIZE(act8865_matches), GFP_KERNEL); ARRAY_SIZE(act8865_matches), GFP_KERNEL);
if (!pdata->regulators) { if (!pdata->regulators)
dev_err(dev, "%s: failed to allocate act8865 registor\n",
__func__);
return -ENOMEM; return -ENOMEM;
}
pdata->num_regulators = matched; pdata->num_regulators = matched;
regulator = pdata->regulators; regulator = pdata->regulators;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment