Commit 3b7dab49 authored by Hans Verkuil's avatar Hans Verkuil Committed by Mauro Carvalho Chehab
Browse files

media: cec-gpio: specify IRQF_NO_AUTOEN when requesting irq



Use IRQF_NO_AUTOEN rather than manually disabling the requested
interrupt.

Signed-off-by: default avatarHans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@kernel.org>
parent f807d06c
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -215,13 +215,11 @@ static int cec_gpio_probe(struct platform_device *pdev)
		return PTR_ERR(cec->adap);

	ret = devm_request_irq(dev, cec->cec_irq, cec_gpio_irq_handler,
			       IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
			       IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_NO_AUTOEN,
			       cec->adap->name, cec);
	if (ret)
		goto del_adap;

	cec_gpio_disable_irq(cec->adap);

	if (cec->hpd_gpio) {
		cec->hpd_irq = gpiod_to_irq(cec->hpd_gpio);
		ret = devm_request_threaded_irq(dev, cec->hpd_irq,