1 Jul 2005 08:12
[PATCH] ARM: Acornfb: Don't claim IRQ fbcon for cursor
Linux Kernel Mailing List <linux-kernel <at> vger.kernel.org>
2005-07-01 06:12:01 GMT
2005-07-01 06:12:01 GMT
tree cb8cc0057d37afbf6684f74eab2b0efbc686648b parent cfb0810eab39d1162f45b73fc96f45ab1cbcbe8b author Russell King <rmk <at> dyn-67.arm.linux.org.uk> Thu, 30 Jun 2005 16:30:07 +0100 committer Russell King <rmk+kernel <at> arm.linux.org.uk> Thu, 30 Jun 2005 16:30:07 +0100 [PATCH] ARM: Acornfb: Don't claim IRQ fbcon for cursor The generic fbcon code tries to register and use the vsync IRQ for ARM platforms with acornfb, but forgets to disable its own cursor timer. The result is a flickering flashing cursor. Remove the code from the fbcon core to register this platform private interrupt. Signed-off-by: Russell King <rmk+kernel <at> arm.linux.org.uk> drivers/video/console/fbcon.c | 8 +------- 1 files changed, 1 insertion(+), 7 deletions(-) diff --git a/drivers/video/console/fbcon.c b/drivers/video/console/fbcon.c --- a/drivers/video/console/fbcon.c +++ b/drivers/video/console/fbcon.c <at> <at> -142,7 +142,6 <at> <at> static int fbcon_set_origin(struct vc_da #define CURSOR_DRAW_DELAY (1) /* # VBL ints between cursor state changes */ -#define ARM_CURSOR_BLINK_RATE (10) #define ATARI_CURSOR_BLINK_RATE (42) #define MAC_CURSOR_BLINK_RATE (32) #define DEFAULT_CURSOR_BLINK_RATE (20)(Continue reading)
arch/alpha/kernel/traps.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/alpha/kernel/traps.c b/arch/alpha/kernel/traps.c
--- a/arch/alpha/kernel/traps.c
+++ b/arch/alpha/kernel/traps.c
<at> <at> -240,7 +240,7 <at> <at> do_entIF(unsigned long type, struct pt_r
siginfo_t info;
int signo, code;
- if (regs->ps == 0) {
+ if ((regs->ps & ~IPL_MAX) == 0) {
if (type == 1) {
RSS Feed