aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorAntonino Daplas <adaplas@hotpop.com>2004-08-22 22:52:43 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-22 22:52:43 -0700
commit216f473e2f7628a0d458766d9cbfd043fdef2cac (patch)
tree4b3a2a506e7cf748627de63760930192dec7abf1 /include
parent37455dc6721caa6b0d553476543471e7d4a35842 (diff)
downloadhistory-216f473e2f7628a0d458766d9cbfd043fdef2cac.tar.gz
[PATCH] fbdev: support for bold attribute for monochrome framebuffers
This patch adds support for the bold attribute for monochrome framebuffers. This fixes a regression from 2.4 where bold, underline and reverse attributes are supported. Signed-off-by: Antonino 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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fb.h b/include/linux/fb.h
index e0de072fed5e41..ea088da59fe1ac 100644
--- a/include/linux/fb.h
+++ b/include/linux/fb.h
@@ -383,11 +383,11 @@ struct fb_cursor {
__u16 set; /* what to set */
__u16 enable; /* cursor on/off */
__u16 rop; /* bitop operation */
- __u16 ul; /* underlined? */
- __u16 rev; /* reversed? */
const char *mask; /* cursor mask bits */
struct fbcurpos hot; /* cursor hot spot */
struct fb_image image; /* Cursor image */
+/* all fields below are for fbcon use only */
+ char *data; /* copy of bitmap */
};
#ifdef __KERNEL__