diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2014-02-18 05:41:09 -0500 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-02-19 11:37:59 -0500 |
commit | f4a6c5b41ced4737c6b811e295d947a76a41262a (patch) | |
tree | d5deac73d7d436d6ddc3a06b8336cb0c1f5daf96 /drivers/regulator/arizona-ldo1.c | |
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/regulator/arizona-ldo1.c')
-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 4f6c2055f6b2..d8e7db696d5a 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) | |||
189 | int ret; | 189 | int ret; |
190 | 190 | ||
191 | ldo1 = devm_kzalloc(&pdev->dev, sizeof(*ldo1), GFP_KERNEL); | 191 | ldo1 = devm_kzalloc(&pdev->dev, sizeof(*ldo1), GFP_KERNEL); |
192 | if (ldo1 == NULL) { | 192 | if (!ldo1) |
193 | dev_err(&pdev->dev, "Unable to allocate private data\n"); | ||
194 | return -ENOMEM; | 193 | return -ENOMEM; |
195 | } | ||
196 | 194 | ||
197 | ldo1->arizona = arizona; | 195 | ldo1->arizona = arizona; |
198 | 196 | ||