diff mbox

Re: [PATCH] fbcon: Bugfix soft cursor detection in Tile Blitting

Message ID 4D617EB0.3070705@henry.nestler.mail.gmail.com (mailing list archive)
State Accepted
Commit d6244bc0ed0c52a795e6f4dcab3886daf3e74fac
Headers show

Commit Message

Henry Nestler Feb. 20, 2011, 8:50 p.m. UTC
None
diff mbox

Patch

diff --git a/drivers/video/console/tileblit.c b/drivers/video/console/tileblit.c
index 0056a41..15e8e1a 100644
--- a/drivers/video/console/tileblit.c
+++ b/drivers/video/console/tileblit.c
@@ -83,7 +83,7 @@  static void tile_cursor(struct vc_data *vc, struct fb_info *info, int mode,
 			int softback_lines, int fg, int bg)
 {
 	struct fb_tilecursor cursor;
-	int use_sw = (vc->vc_cursor_type & 0x01);
+	int use_sw = (vc->vc_cursor_type & 0x10);
 
 	cursor.sx = vc->vc_x;
 	cursor.sy = vc->vc_y;