Skip to content

Commit 4f733de

Browse files
leesagaciousDominik Brodowski
authored andcommitted
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: lizhe <sensor1010@163.com> [linux@dominikbrodowski.net: update commit message] Signed-off-by: Dominik Brodowski <linux@dominikbrodowski.net>
1 parent 99e25b1 commit 4f733de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/pcmcia/tcic.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ static int __init init_tcic(void)
435435
}
436436

437437
/* Set up polling */
438-
timer_setup(&poll_timer, &tcic_timer, 0);
438+
timer_setup(&poll_timer, tcic_timer, 0);
439439

440440
/* Build interrupt mask */
441441
printk(KERN_CONT ", %d sockets\n", sockets);

0 commit comments

Comments
 (0)