diff options
| author | Andrew Morton <akpm@osdl.org> | 2004-06-23 19:21:01 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-06-23 19:21:01 -0700 |
| commit | 0a88d6091a146d1a25f3736f40c5d017a301f487 (patch) | |
| tree | e31356f71689f8176a9b8fc3f6aff9320e17c39a /include | |
| parent | 4c03b0737e45f335f0ad30786644f6fb6384f8c3 (diff) | |
[PATCH] Core fbcon fixes
From: "Antonino A. Daplas" <adaplas@hotpop.com>
This patch fixes the following bugs/regressions for fbcon:
1. Initialize and update global arrays used by fbcon during
initialization and and by set_con2fbmap code.
2. Fixed screen corruption (white rectangle) at initial mode setting
plaguing cards with VGA cores and with VGA console enabled. (vga16fb,
however, still shows remnants of previous text if boot logo is enabled)
3. Improved fbcon_startup/fbcon_init code.
4. Fixed set_con2fbmap code -- should support multiple devices mapped to
Signed-off-by: Antonino A. Daplas <adaplas@pol.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
| -rw-r--r-- | include/linux/fb.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h index cc7f14febf7c..c2ff4024cc25 100644 --- a/include/linux/fb.h +++ b/include/linux/fb.h @@ -539,6 +539,7 @@ struct fb_info { struct fb_monspecs monspecs; /* Current Monitor specs */ struct fb_cursor cursor; /* Current cursor */ struct work_struct queue; /* Framebuffer event queue */ + struct timer_list cursor_timer; /* Cursor timer */ struct fb_pixmap pixmap; /* Image hardware mapper */ struct fb_pixmap sprite; /* Cursor hardware mapper */ struct fb_cmap cmap; /* Current cmap */ |
