Commit 6e27e996 authored by Jingoo Han's avatar Jingoo Han Committed by Mark Brown

regulator: max8649: remove unnecessary OOM messages

The site-specific OOM messages are unnecessary, because they
duplicate the MM subsystem generic OOM message.
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent c9eaa447
...@@ -161,10 +161,8 @@ static int max8649_regulator_probe(struct i2c_client *client, ...@@ -161,10 +161,8 @@ static int max8649_regulator_probe(struct i2c_client *client,
info = devm_kzalloc(&client->dev, sizeof(struct max8649_regulator_info), info = devm_kzalloc(&client->dev, sizeof(struct max8649_regulator_info),
GFP_KERNEL); GFP_KERNEL);
if (!info) { if (!info)
dev_err(&client->dev, "No enough memory\n");
return -ENOMEM; return -ENOMEM;
}
info->regmap = devm_regmap_init_i2c(client, &max8649_regmap_config); info->regmap = devm_regmap_init_i2c(client, &max8649_regmap_config);
if (IS_ERR(info->regmap)) { if (IS_ERR(info->regmap)) {
......
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