summaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorLee Jones <lee.jones@linaro.org>2015-10-27 16:14:06 +0000
committerLee Jones <lee.jones@linaro.org>2016-01-14 08:43:52 +0000
commit4374b20c6c4fa8533e932567be9cd8872286da95 (patch)
treed4debc507436b620d81e7ac1d930bd2944467947 /drivers/mfd
parentf90dff44641dedea02b1549a9dd5c00bae9230da (diff)
downloadlinux-0-day-4374b20c6c4fa8533e932567be9cd8872286da95.tar.gz
linux-0-day-4374b20c6c4fa8533e932567be9cd8872286da95.tar.xz
mfd: aat2870-core: Remove unnecessary 'out of memory' message
WARNING: Possible unnecessary 'out of memory' message + if (!aat2870) { + dev_err(&client->dev, total: 0 errors, 1 warnings, 524 lines checked Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/aat2870-core.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/mfd/aat2870-core.c b/drivers/mfd/aat2870-core.c
index 29b6a2d4ac724..3ba19a45f199a 100644
--- a/drivers/mfd/aat2870-core.c
+++ b/drivers/mfd/aat2870-core.c
@@ -373,11 +373,8 @@ static int aat2870_i2c_probe(struct i2c_client *client,
aat2870 = devm_kzalloc(&client->dev, sizeof(struct aat2870_data),
GFP_KERNEL);
- if (!aat2870) {
- dev_err(&client->dev,
- "Failed to allocate memory for aat2870\n");
+ if (!aat2870)
return -ENOMEM;
- }
aat2870->dev = &client->dev;
dev_set_drvdata(aat2870->dev, aat2870);