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 <[email protected]> [[email protected]: update commit message] Signed-off-by: Dominik Brodowski <[email protected]>
1 parent 99e25b1 commit 4f733de

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)