* [PATCH 2/2] pm2fb: Colour palette fixes
@ 2004-10-22 9:54 Jim Hague
0 siblings, 0 replies; only message in thread
From: Jim Hague @ 2004-10-22 9:54 UTC (permalink / raw)
To: linux-fbdev-devel, Andrew Morton
- Hardware CLUT only needs setting on pseudocolor.
- Pseudo palette values need to be 32bit wide for cfb_*().
Signed-off-by: Jim Hague <jim.hague@acm.org>
diff -u -p -r1.24 pm2fb.c
--- drivers/video/pm2fb.c 23 Sep 2004 01:19:45 -0000 1.24
+++ drivers/video/pm2fb.c 22 Oct 2004 09:36:32 -0000
@@ -877,7 +877,6 @@ static int pm2fb_setcolreg(unsigned regn
green = CNVT_TOHW(green, info->var.green.length);
blue = CNVT_TOHW(blue, info->var.blue.length);
transp = CNVT_TOHW(transp, info->var.transp.length);
- set_color(par, regno, red, green, blue);
break;
case FB_VISUAL_DIRECTCOLOR:
/* example here assumes 8 bit DAC. Might be different
@@ -904,12 +903,8 @@ static int pm2fb_setcolreg(unsigned regn
switch (info->var.bits_per_pixel) {
case 8:
- /* Yes some hand held devices have this. */
- ((u8*)(info->pseudo_palette))[regno] = v;
break;
case 16:
- ((u16*)(info->pseudo_palette))[regno] = v;
- break;
case 24:
case 32:
((u32*)(info->pseudo_palette))[regno] = v;
@@ -917,7 +912,9 @@ static int pm2fb_setcolreg(unsigned regn
}
return 0;
}
- /* ... */
+ else if (info->fix.visual == FB_VISUAL_PSEUDOCOLOR)
+ set_color(par, regno, red, green, blue);
+
return 0;
}
-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2004-10-22 9:54 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-10-22 9:54 [PATCH 2/2] pm2fb: Colour palette fixes Jim Hague
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).