aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/video/sm501fb.c
diff options
context:
space:
mode:
authorVille Syrjala <syrjala@sci.fi>2008-03-04 17:28:46 -0500
committerLinus Torvalds <torvalds@woody.linux-foundation.org>2008-03-04 19:35:13 -0500
commit5619d823bc0e49d05618cdf955b04055b51a7de5 (patch)
tree8464e11094060a49132fc068a562da7bc5d9a72f /drivers/video/sm501fb.c
parent5cba6d22e35a05adb28fdea191b232501518c455 (diff)
sm501fb: direct color visual does not work
The sm501fb palette code clearly does not handle direct color so change the driver to use true color visual for 16bpp. Signed-off-by: Ville Syrjala <syrjala@sci.fi> Acked-by: Magnus Damm <damm@igel.co.jp> Acked-by: Ben Dooks <ben-linux@fluff.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/video/sm501fb.c')
-rw-r--r--drivers/video/sm501fb.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/video/sm501fb.c b/drivers/video/sm501fb.c
index e83dfba7e636..6e7810d914cc 100644
--- a/drivers/video/sm501fb.c
+++ b/drivers/video/sm501fb.c
@@ -397,7 +397,7 @@ static int sm501fb_set_par_common(struct fb_info *info,
397 break; 397 break;
398 398
399 case 16: 399 case 16:
400 info->fix.visual = FB_VISUAL_DIRECTCOLOR; 400 info->fix.visual = FB_VISUAL_TRUECOLOR;
401 break; 401 break;
402 402
403 case 32: 403 case 32:
@@ -613,6 +613,7 @@ static int sm501fb_set_par_crt(struct fb_info *info)
613 613
614 case 16: 614 case 16:
615 control |= SM501_DC_CRT_CONTROL_16BPP; 615 control |= SM501_DC_CRT_CONTROL_16BPP;
616 sm501fb_setup_gamma(fbi, SM501_DC_CRT_PALETTE);
616 break; 617 break;
617 618
618 case 32: 619 case 32:
@@ -750,6 +751,7 @@ static int sm501fb_set_par_pnl(struct fb_info *info)
750 751
751 case 16: 752 case 16:
752 control |= SM501_DC_PANEL_CONTROL_16BPP; 753 control |= SM501_DC_PANEL_CONTROL_16BPP;
754 sm501fb_setup_gamma(fbi, SM501_DC_PANEL_PALETTE);
753 break; 755 break;
754 756
755 case 32: 757 case 32: