summaryrefslogtreecommitdiffstats
path: root/drivers/video/console
diff options
context:
space:
mode:
authorStefano Stabellini2008-07-24 06:31:48 +0200
committerLinus Torvalds2008-07-24 19:47:41 +0200
commit2d04a4a72d7e1519b4838f24bdd4b5d0f3f426dc (patch)
tree2e6278cbc64a338824511c19ad38c7e289fa7112 /drivers/video/console
parentvideo: sh7760fb: SH7760/SH7763 LCDC framebuffer driver (diff)
downloadkernel-qcow2-linux-2d04a4a72d7e1519b4838f24bdd4b5d0f3f426dc.tar.gz
kernel-qcow2-linux-2d04a4a72d7e1519b4838f24bdd4b5d0f3f426dc.tar.xz
kernel-qcow2-linux-2d04a4a72d7e1519b4838f24bdd4b5d0f3f426dc.zip
fbcon: bgcolor fix
The fourth bit of the background color is the blink property bit, not the intensity bit, as for the foreground color. Therefore it shouldn't be included in the background color. Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> Cc: Krzysztof Helt <krzysztof.h1@poczta.fm> Cc: "Antonino A. Daplas" <adaplas@pol.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/console')
-rw-r--r--drivers/video/console/fbcon.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/console/fbcon.h b/drivers/video/console/fbcon.h
index 0135e0395456..beb6a74fc7f2 100644
--- a/drivers/video/console/fbcon.h
+++ b/drivers/video/console/fbcon.h
@@ -92,7 +92,7 @@ struct fbcon_ops {
#define attr_fgcol(fgshift,s) \
(((s) >> (fgshift)) & 0x0f)
#define attr_bgcol(bgshift,s) \
- (((s) >> (bgshift)) & 0x0f)
+ (((s) >> (bgshift)) & 0x07)
/* Monochrome */
#define attr_bold(s) \