From: Rusty Russell <rusty@rustcorp.com.au>
To: Ani Joshi <ajoshi@shell.unixbox.com>
Cc: "[iso-8859-2] Pawe? Goleniowski" <pawelg@dabrowa.pl>,
linux-kernel@vger.kernel.org, jgarzik@pobox.com
Subject: [PATCH] rivafb & small 16 bit mode problem
Date: Thu, 22 Jan 2004 15:51:45 +1100 [thread overview]
Message-ID: <20040122045458.5B2922C100@lists.samba.org> (raw)
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.
next reply other threads:[~2004-01-22 4:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-01-22 4:51 Rusty Russell [this message]
2004-01-22 13:30 ` [PATCH] rivafb & small 16 bit mode problem 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
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040122045458.5B2922C100@lists.samba.org \
--to=rusty@rustcorp.com.au \
--cc=ajoshi@shell.unixbox.com \
--cc=jgarzik@pobox.com \
--cc=linux-kernel@vger.kernel.org \
--cc=pawelg@dabrowa.pl \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox