From: Julia Lawall Date: Wed, 4 Feb 2009 19:44:01 +0000 (+0100) Subject: mfd: Fix egpio kzalloc return test X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=720fd66dfad1b0286721dbb2ed4d6076c0aa953b;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git mfd: Fix egpio kzalloc return test Since ei is already known to be non-NULL, I assume that what was intended was to test the result of kzalloc. Signed-off-by: Julia Lawall Signed-off-by: Samuel Ortiz --- diff --git a/drivers/mfd/htc-egpio.c b/drivers/mfd/htc-egpio.c index 1a4d04664d6d..194df7b8256c 100644 --- a/drivers/mfd/htc-egpio.c +++ b/drivers/mfd/htc-egpio.c @@ -307,7 +307,7 @@ static int __init egpio_probe(struct platform_device *pdev) ei->nchips = pdata->num_chips; ei->chip = kzalloc(sizeof(struct egpio_chip) * ei->nchips, GFP_KERNEL); - if (!ei) { + if (!ei->chip) { ret = -ENOMEM; goto fail; }