diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-18 14:41:10 +0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-19 20:37:59 +0400 |
commit | 820cd31e3682720eef787e853b15fa41548b6508 (patch) | |
tree | 533eb59eac79085bdffe9de3b7998e51c828f3de | |
parent | f4a6c5b41ced4737c6b811e295d947a76a41262a (diff) | |
download | linux-820cd31e3682720eef787e853b15fa41548b6508.tar.xz |
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>
-rw-r--r-- | drivers/regulator/arizona-micsupp.c | 4 |
1 files changed, 1 insertions, 3 deletions
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); |