aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mailbox
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2016-03-21 20:12:20 +0800
committerJassi Brar <jaswinder.singh@linaro.org>2016-04-08 09:30:11 +0530
commita61b37ead51488e321fe559a4edd0325c6d4c937 (patch)
treeaf81cd412d9470b440b7aac283dd4b1a103b39f5 /drivers/mailbox
parentRevert "ib_srpt: Convert to percpu_ida tag allocation" (diff)
downloadlinux-dev-a61b37ead51488e321fe559a4edd0325c6d4c937.tar.xz
linux-dev-a61b37ead51488e321fe559a4edd0325c6d4c937.zip
mailbox: xgene-slimpro: Fix wrong test for devm_kzalloc
devm_kzalloc() returns NULL on failure. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Diffstat (limited to 'drivers/mailbox')
-rw-r--r--drivers/mailbox/mailbox-xgene-slimpro.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mailbox/mailbox-xgene-slimpro.c b/drivers/mailbox/mailbox-xgene-slimpro.c
index bd07f39f0692..dd2afbca51c9 100644
--- a/drivers/mailbox/mailbox-xgene-slimpro.c
+++ b/drivers/mailbox/mailbox-xgene-slimpro.c
@@ -189,8 +189,8 @@ static int slimpro_mbox_probe(struct platform_device *pdev)
int i;
ctx = devm_kzalloc(&pdev->dev, sizeof(struct slimpro_mbox), GFP_KERNEL);
- if (IS_ERR(ctx))
- return PTR_ERR(ctx);
+ if (!ctx)
+ return -ENOMEM;
platform_set_drvdata(pdev, ctx);