From: Sachin Kamat <sachin.kamat@linaro.org> Date: Tue, 18 Feb 2014 10:41:10 +0000 (+0530) Subject: regulator: arizona-micsupp: Remove redundant error message X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=820cd31e3682720eef787e853b15fa41548b6508;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git regulator: arizona-micsupp: 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> --- diff --git a/drivers/regulator/arizona-micsupp.c b/drivers/regulator/arizona-micsupp.c index 034ece707083..6fdd9bf6927f 100644 --- a/drivers/regulator/arizona-micsupp.c +++ b/drivers/regulator/arizona-micsupp.c @@ -204,10 +204,8 @@ static int arizona_micsupp_probe(struct platform_device *pdev) int ret; micsupp = devm_kzalloc(&pdev->dev, sizeof(*micsupp), GFP_KERNEL); - if (micsupp == NULL) { - dev_err(&pdev->dev, "Unable to allocate private data\n"); + if (!micsupp) return -ENOMEM; - } micsupp->arizona = arizona; INIT_WORK(&micsupp->check_cp_work, arizona_micsupp_check_cp);