* [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* Re: [PATCH] rivafb & small 16 bit mode problem
2004-01-22 4:51 [PATCH] rivafb & small 16 bit mode problem Rusty Russell
@ 2004-01-22 13:30 ` Paweł Goleniowski
2004-01-23 10:40 ` Ingo Buescher
0 siblings, 1 reply; 5+ messages in thread
From: Paweł Goleniowski @ 2004-01-22 13:30 UTC (permalink / raw)
To: Rusty Russell, Ani Joshi; +Cc: linux-kernel, jgarzik
Dnia czw 22 stycznia 2004 05:51, Rusty Russell napisał/a:
> Ani,
>
> I assume this should be in 2.6's drivers/video/riva/fbdev.c as
> well?
>
> Rusty.
>
Well, I've just checked rivafb under 2.6.1 and I didn't notice this mistake -
there are good colours in Midnight Commander. Probably this bug was repaired
somewhere in 2.5.
But I have no idea which options should I send to kernel to get different
resolution (video=riva:800x600-16@85 don't work) and I have very ugly Linux
logo while booting ;)
--
===> Goldi <===
Linux user since Jan 16 2000 (#176912)
Proletariusze wszystkich krajów świata
używajcie systemu Linux!
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] rivafb & small 16 bit mode problem
2004-01-22 13:30 ` Paweł Goleniowski
@ 2004-01-23 10:40 ` Ingo Buescher
0 siblings, 0 replies; 5+ messages in thread
From: Ingo Buescher @ 2004-01-23 10:40 UTC (permalink / raw)
To: Paweł Goleniowski; +Cc: linux-kernel
On Thu, 22 Jan 2004, [iso-8859-2] Pawe? Goleniowski wrote:
> But I have no idea which options should I send to kernel to get different
> resolution (video=riva:800x600-16@85 don't work) and I have very ugly Linux
> logo while booting ;)
video=rivafb:800x600-16@85
^^
should work
IB
--
===========================================================================
Ingo Buescher <usenet-2004@r-arcology.de>
"Maneuvering with an army is advantageous; with an undisciplined
multitude, most dangerous." -- Sun Tzu
^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <1gF6W-Np-7@gated-at.bofh.it>]
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 --
2004-01-22 4:51 [PATCH] rivafb & small 16 bit mode problem Rusty Russell
2004-01-22 13:30 ` Paweł Goleniowski
2004-01-23 10:40 ` Ingo Buescher
[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 ` Peter Matthias
2004-01-26 18:37 ` James Simmons
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome