1
0

Staging: media: Change data value in setup_timer function

Here, data value 0xabadcafe in function setup_timer
seems like a nonsense value and timer handler function
is not using it anyway. So, change it to 0.

Signed-off-by: Vaishali Thakkar <vthakkar1994@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Vaishali Thakkar
2015-02-18 22:22:38 +05:30
committed by Greg Kroah-Hartman
parent 08e28893b3
commit b856e0f7b2

View File

@@ -683,7 +683,7 @@ static int init_port(void)
}
pr_info("I/O port 0x%.4x, IRQ %d.\n", io, irq);
setup_timer(&timerlist, sir_timeout, 0xabadcafe);
setup_timer(&timerlist, sir_timeout, 0);
return 0;
}