Commit 8c7c6cad authored by Sean Young's avatar Sean Young Committed by Mauro Carvalho Chehab
Browse files

[media] staging: sir: make sure we are ready to receive interrupts



Ensure that the timer is ready before we request interrupts.

Signed-off-by: default avatarSean Young <sean@mess.org>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 4d7cf7ec
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -325,6 +325,8 @@ static int init_port(void)
{
	int retval;

	setup_timer(&timerlist, sir_timeout, 0);

	/* get I/O port access and IRQ line */
	if (!request_region(io, 8, KBUILD_MODNAME)) {
		pr_err("i/o port 0x%.4x already in use.\n", io);
@@ -339,8 +341,6 @@ static int init_port(void)
	}
	pr_info("I/O port 0x%.4x, IRQ %d.\n", io, irq);

	setup_timer(&timerlist, sir_timeout, 0);

	return 0;
}