public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] rivafb & small 16 bit mode problem
@ 2004-01-22  4:51 Rusty Russell
  2004-01-22 13:30 ` Paweł Goleniowski
  0 siblings, 1 reply; 5+ messages in thread
From: Rusty Russell @ 2004-01-22  4:51 UTC (permalink / raw)
  To: Ani Joshi; +Cc: [iso-8859-2] Pawe? Goleniowski, linux-kernel, jgarzik

Ani,

	I assume this should be in 2.6's drivers/video/riva/fbdev.c as
well?

Rusty.

Date: Thu, 8 Jan 2004 22:45:56 +0100
From: "[iso-8859-2] Pawe? Goleniowski" <pawelg@dabrowa.pl>
To: linux-kernel@vger.kernel.org
Cc: marcelo.tosatti@cyclades.com, trivial@rustcorp.com.au
Subject: [PATCH for 2.4.x] rivafb & small 16 bit mode problem

I have already send this once before Xmas but it probably got lost, so I'm
sending it again:

There is a problem with 16 bit mode with rivafb. Colors are sometimes broken
(specialy under Midnight Commander). This small patch fixes it. I've been
using it for last months and it works without any problems.

Pawel 'Goldi' Goleniowski


--Boundary-00=_U+c//wvZdA6GwMA
Content-Type: TEXT/X-DIFF; CHARSET=iso-8859-2; NAME="patch-rivafb.diff"
Content-ID: <Pine.LNX.4.58L.0401220001133.18059@logos.cnet>
Content-Description: 
Content-Disposition: ATTACHMENT; FILENAME="patch-rivafb.diff"

--- linux/drivers/video/riva/accel.c	2003-12-22 22:46:27.000000000 +0100
+++ linux/drivers/video/riva/accel.c	2003-12-22 19:47:19.000000000 +0100
@@ -300,8 +300,8 @@
 
 static inline void convert_bgcolor_16(u32 *col)
 {
-	*col = ((*col & 0x00007C00) << 9)
-             | ((*col & 0x000003E0) << 6)
+	*col = ((*col & 0x0000F800) << 8)
+             | ((*col & 0x000007E0) << 5)
              | ((*col & 0x0000001F) << 3)
              |          0xFF000000;
 }

--Boundary-00=_U+c//wvZdA6GwMA--

--
  Anyone who quotes me in their sig is an idiot. -- Rusty Russell.

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

end of thread, other threads:[~2004-01-26 18:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1gF6W-Np-7@gated-at.bofh.it>
     [not found] ` <1gNe0-84O-11@gated-at.bofh.it>
     [not found]   ` <1h734-14p-9@gated-at.bofh.it>
2004-01-23 15:05     ` [PATCH] rivafb & small 16 bit mode problem Peter Matthias
2004-01-26 18:37       ` James Simmons
2004-01-22  4:51 Rusty Russell
2004-01-22 13:30 ` Paweł Goleniowski
2004-01-23 10:40   ` Ingo Buescher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox