Input: keyboard - convert timers to use timer_setup()
In preparation for unconditionally passing the struct timer_list pointer to all timer callbacks, switch to using the new timer_setup() and from_timer() to pass the timer pointer explicitly. Signed-off-by: Kees Cook <keescook@chromium.org> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
This commit is contained in:

committed by
Dmitry Torokhov

parent
a11bc476b9
commit
4ea40278eb
@@ -184,9 +184,9 @@ static void imx_keypad_fire_events(struct imx_keypad *keypad,
|
||||
/*
|
||||
* imx_keypad_check_for_events is the timer handler.
|
||||
*/
|
||||
static void imx_keypad_check_for_events(unsigned long data)
|
||||
static void imx_keypad_check_for_events(struct timer_list *t)
|
||||
{
|
||||
struct imx_keypad *keypad = (struct imx_keypad *) data;
|
||||
struct imx_keypad *keypad = from_timer(keypad, t, check_matrix_timer);
|
||||
unsigned short matrix_volatile_state[MAX_MATRIX_KEY_COLS];
|
||||
unsigned short reg_val;
|
||||
bool state_changed, is_zero_matrix;
|
||||
@@ -456,8 +456,8 @@ static int imx_keypad_probe(struct platform_device *pdev)
|
||||
keypad->irq = irq;
|
||||
keypad->stable_count = 0;
|
||||
|
||||
setup_timer(&keypad->check_matrix_timer,
|
||||
imx_keypad_check_for_events, (unsigned long) keypad);
|
||||
timer_setup(&keypad->check_matrix_timer,
|
||||
imx_keypad_check_for_events, 0);
|
||||
|
||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||
keypad->mmio_base = devm_ioremap_resource(&pdev->dev, res);
|
||||
|
Reference in New Issue
Block a user