[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1466735172-13372-7-git-send-email-chris@cpdesign.com.au>
Date: Fri, 24 Jun 2016 12:26:11 +1000
From: Chris Lapa <chris@...a.com.au>
To: k.kozlowski@...sung.com, dwmw2@...radead.org, dbaryshkov@...il.com,
sre@...nel.org, mark.rutland@....com, robh+dt@...nel.org
Cc: devicetree@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-pm@...r.kernel.org, Chris Lapa <chris@...a.com.au>
Subject: [PATCH v5 6/7] max8903: remove unnecessary 'out of memory' error message.
From: Chris Lapa <chris@...a.com.au>
Remove the 'out of memory' error message as it is printed by the core.
Signed-off-by: Chris Lapa <chris@...a.com.au>
Reviewed-by: Krzysztof Kozlowski <k.kozlowski@...sung.com>
---
drivers/power/max8903_charger.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/drivers/power/max8903_charger.c b/drivers/power/max8903_charger.c
index 643a87a..9453bbf 100644
--- a/drivers/power/max8903_charger.c
+++ b/drivers/power/max8903_charger.c
@@ -304,10 +304,8 @@ static int max8903_probe(struct platform_device *pdev)
}
data = devm_kzalloc(dev, sizeof(struct max8903_data), GFP_KERNEL);
- if (data == NULL) {
- dev_err(dev, "Cannot allocate memory.\n");
+ if (!data)
return -ENOMEM;
- }
data->pdata = pdev->dev.platform_data;
data->dev = dev;
--
1.9.1
Powered by blists - more mailing lists