Commit 4f733de8 authored by lizhe's avatar lizhe Committed by Dominik Brodowski

pcmcia: tcic: remove unneeded "&" in call to setup_timer()

The second parameter is the entry address of the function, and
therefore does not require an "&".
Signed-off-by: default avatarlizhe <sensor1010@163.com>
[linux@dominikbrodowski.net: update commit message]
Signed-off-by: default avatarDominik Brodowski <linux@dominikbrodowski.net>
parent 99e25b17
......@@ -435,7 +435,7 @@ static int __init init_tcic(void)
}
/* Set up polling */
timer_setup(&poll_timer, &tcic_timer, 0);
timer_setup(&poll_timer, tcic_timer, 0);
/* Build interrupt mask */
printk(KERN_CONT ", %d sockets\n", sockets);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment