linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fb: hide cursor in graphics mode
@ 2009-01-23 12:33 Risto Suominen
  2009-01-24  8:51 ` [Linux-fbdev-devel] " Geert Uytterhoeven
  0 siblings, 1 reply; 20+ messages in thread
From: Risto Suominen @ 2009-01-23 12:33 UTC (permalink / raw)
  To: adaplas; +Cc: lkml, linux-fbdev-devel

[-- Attachment #1: Type: text/plain, Size: 789 bytes --]

Xserver Xfbdev (kdrive) uses linux framebuffer in graphics mode. It doesn't
need the text mode cursor, it's a bit annoying to have it there sitting in a
corner. This patch disables the cursor even when in graphics mode.

Signed-off-by: Risto Suominen <Risto.Suominen@gmail.com>
---
The testing is done on kernel version 2.6.18.

--- a/drivers/video/console/fbcon.c.org	2007-03-03 07:14:54.000000000 +0200
+++ b/drivers/video/console/fbcon.c	2009-01-23 12:42:14.000000000 +0200
@@ -1363,6 +1363,12 @@ static void fbcon_cursor(struct vc_data
 	int y;
  	int c = scr_readw((u16 *) vc->vc_pos);

+	if (mode == CM_ERASE && info->fbops->fb_cursor) {
+		/* Hide H/W-cursor unconditionally */
+		ops->cursor(vc, info, mode, 0, 0, 0);
+		return;
+	}
+
 	if (fbcon_is_inactive(vc, info))
 		return;

[-- Attachment #2: fbcon-graphics-nocursor.diff --]
[-- Type: text/x-diff, Size: 793 bytes --]

Xserver Xfbdev (kdrive) uses linux framebuffer in graphics mode. It doesn't
need the text mode cursor, it's a bit annoying to have it there sitting in a
corner. This patch disables the cursor even when in graphics mode.

Signed-off-by: Risto Suominen <Risto.Suominen@gmail.com>
---
The testing is done on kernel version 2.6.18.

--- a/drivers/video/console/fbcon.c.org	2007-03-03 07:14:54.000000000 +0200
+++ b/drivers/video/console/fbcon.c	2009-01-23 12:42:14.000000000 +0200
@@ -1363,6 +1363,12 @@ static void fbcon_cursor(struct vc_data 
 	int y;
  	int c = scr_readw((u16 *) vc->vc_pos);
 
+	if (mode == CM_ERASE && info->fbops->fb_cursor) {
+		/* Hide H/W-cursor unconditionally */
+		ops->cursor(vc, info, mode, 0, 0, 0);
+		return;
+	}
+
 	if (fbcon_is_inactive(vc, info))
 		return;
 

^ permalink raw reply	[flat|nested] 20+ messages in thread

end of thread, other threads:[~2009-03-21 22:01 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-01-23 12:33 [PATCH] fb: hide cursor in graphics mode Risto Suominen
2009-01-24  8:51 ` [Linux-fbdev-devel] " Geert Uytterhoeven
2009-01-24  9:09   ` Risto Suominen
2009-01-24 13:26     ` Geert Uytterhoeven
2009-01-24 14:49       ` Risto Suominen
2009-02-10 21:37         ` Risto Suominen
2009-02-10 21:50           ` Risto Suominen
2009-02-11 12:35             ` Risto Suominen
2009-02-11 22:24             ` Andrew Morton
2009-02-12 21:12               ` Risto Suominen
2009-02-13 20:06                 ` Krzysztof Helt
2009-02-22  7:15                   ` Krzysztof Helt
2009-02-22  9:25                     ` Risto Suominen
2009-02-22 11:20                       ` Krzysztof Helt
     [not found]                       ` <20090222164052.dd5442c4.krzysztof.h1@poczta.fm>
2009-02-23  6:53                         ` Risto Suominen
2009-02-28 18:51                           ` Krzysztof Helt
2009-03-01 11:50                             ` Risto Suominen
2009-03-12 15:19                               ` Risto Suominen
2009-03-17 21:02               ` [PATCH] fb: hide hardware cursor in graphics mode (Mach64) Krzysztof Helt
2009-03-21 22:01                 ` Risto Suominen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).