Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 956295d5 authored by Al Viro's avatar Al Viro Committed by Linus Torvalds
Browse files

[PATCH] fix the survivors of fbcon_vbl_handler() renaming



In

|Author: James Simmons <jsimmons@kozmo.(none)>
|Date:   Thu Mar 13 22:37:08 2003 -0800
|
|    [FBCON] Cursor handling clean up. I nuked several static variables.

we have

-static void fbcon_vbl_handler(int irq, void *dummy, struct pt_regs *fp)
+static void fb_vbl_handler(int irq, void *dev_id, struct pt_regs *fp)

and 3 years later a couple of instances missed back then still remains
there.

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5932ef07
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3197,11 +3197,11 @@ static void fbcon_exit(void)
		return;

#ifdef CONFIG_ATARI
	free_irq(IRQ_AUTO_4, fbcon_vbl_handler);
	free_irq(IRQ_AUTO_4, fb_vbl_handler);
#endif
#ifdef CONFIG_MAC
	if (MACH_IS_MAC && vbl_detected)
		free_irq(IRQ_MAC_VBL, fbcon_vbl_handler);
		free_irq(IRQ_MAC_VBL, fb_vbl_handler);
#endif

	kfree((void *)softback_buf);