]> git.pld-linux.org Git - packages/kernel.git/commitdiff
- ported my patch from 2.4.x
authorJakub Bogusz <qboosh@pld-linux.org>
Wed, 16 Jun 2004 19:35:38 +0000 (19:35 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    linux-2.6-rivafb16.patch -> 1.1

linux-2.6-rivafb16.patch [new file with mode: 0644]

diff --git a/linux-2.6-rivafb16.patch b/linux-2.6-rivafb16.patch
new file mode 100644 (file)
index 0000000..62bfb22
--- /dev/null
@@ -0,0 +1,13 @@
+--- linux-2.6.4/drivers/video/riva/fbdev.c.orig        2004-03-11 03:55:36.000000000 +0100
++++ linux-2.6.4/drivers/video/riva/fbdev.c     2004-04-22 18:42:33.063742432 +0200
+@@ -1368,8 +1368,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;
+ }
This page took 0.094202 seconds and 4 git commands to generate.