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

Commit 5f6e3c8e authored by Dan Carpenter's avatar Dan Carpenter Committed by Mauro Carvalho Chehab
Browse files

V4L/DVB: media/IR/imon: testing the wrong variable



There is a typo here.  We meant to test "ir" instead of "props".  The
"props" variable was tested earlier.

Signed-off-by: default avatarDan Carpenter <error27@gmail.com>
Acked-by: default avatarJarod Wilson <jarod@redhat.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@redhat.com>
parent f03900d6
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -1671,7 +1671,7 @@ static struct input_dev *imon_init_idev(struct imon_context *ictx)
	}
	}


	ir = kzalloc(sizeof(struct ir_input_dev), GFP_KERNEL);
	ir = kzalloc(sizeof(struct ir_input_dev), GFP_KERNEL);
	if (!props) {
	if (!ir) {
		dev_err(ictx->dev, "remote ir input dev allocation failed\n");
		dev_err(ictx->dev, "remote ir input dev allocation failed\n");
		goto ir_dev_alloc_failed;
		goto ir_dev_alloc_failed;
	}
	}