Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 720fd66d authored by Julia Lawall's avatar Julia Lawall Committed by Samuel Ortiz
Browse files

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: default avatarJulia Lawall <julia@diku.dk>
Signed-off-by: default avatarSamuel Ortiz <sameo@openedhand.com>
parent d2f8d7ee
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
	}