summaryrefslogtreecommitdiffstats
path: root/drivers/video/fbcon.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-05-12 21:05:59 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-05-12 21:05:59 +0000
commitba2dacab305c598cd4c34a604f8e276bf5bab5ff (patch)
tree78670a0139bf4d5ace617b29b7eba82bbc74d602 /drivers/video/fbcon.c
parentb77bf69998121e689c5e86cc5630d39a0a9ee6ca (diff)
Merge with Linux 2.3.99-pre7 and various other bits.
Diffstat (limited to 'drivers/video/fbcon.c')
-rw-r--r--drivers/video/fbcon.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/video/fbcon.c b/drivers/video/fbcon.c
index aedbc8b17..69a3fb5bf 100644
--- a/drivers/video/fbcon.c
+++ b/drivers/video/fbcon.c
@@ -229,15 +229,13 @@ static void fbcon_vbl_detect(int irq, void *dummy, struct pt_regs *fp)
static void cursor_timer_handler(unsigned long dev_addr);
static struct timer_list cursor_timer = {
- NULL, NULL, 0, 0L, cursor_timer_handler
+ function: cursor_timer_handler
};
static void cursor_timer_handler(unsigned long dev_addr)
{
fbcon_vbl_handler(0, NULL, NULL);
cursor_timer.expires = jiffies+HZ/50;
- cursor_timer.data = 0;
- cursor_timer.next = cursor_timer.prev = NULL;
add_timer(&cursor_timer);
}
@@ -411,8 +409,6 @@ static const char *fbcon_startup(void)
if (irqres) {
cursor_blink_rate = DEFAULT_CURSOR_BLINK_RATE;
cursor_timer.expires = jiffies+HZ/50;
- cursor_timer.data = 0;
- cursor_timer.next = cursor_timer.prev = NULL;
add_timer(&cursor_timer);
}