diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-18 16:11:09 +0530 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-20 01:37:59 +0900 |
commit | f4a6c5b41ced4737c6b811e295d947a76a41262a (patch) | |
tree | d5deac73d7d436d6ddc3a06b8336cb0c1f5daf96 /drivers | |
parent | 38dbfb59d1175ef458d006556061adeaa8751b72 (diff) |
regulator: arizona-ldo1: 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>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/arizona-ldo1.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/regulator/arizona-ldo1.c b/drivers/regulator/arizona-ldo1.c index 4f6c2055f6b..d8e7db696d5 100644 --- a/drivers/regulator/arizona-ldo1.c +++ b/drivers/regulator/arizona-ldo1.c @@ -189,10 +189,8 @@ static int arizona_ldo1_probe(struct platform_device *pdev) int ret; ldo1 = devm_kzalloc(&pdev->dev, sizeof(*ldo1), GFP_KERNEL); - if (ldo1 == NULL) { - dev_err(&pdev->dev, "Unable to allocate private data\n"); + if (!ldo1) return -ENOMEM; - } ldo1->arizona = arizona; |