diff options
author | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-11-14 15:47:52 -0200 |
---|---|---|
committer | Paulo Cesar Pereira de Andrade <pcpa@mandriva.com.br> | 2008-11-14 15:47:52 -0200 |
commit | 5b8583fc2e5626ed98877858158d9687d7c94469 (patch) | |
tree | e68d583f03a7677eebe375d17a6ada94260819bf /src/smi501_crtc.c | |
parent | ffb4be763ced82158a3a1d2e06fb0e81815e057b (diff) |
Be more liberal about mode width validation.
The code was inherited from first import of latest smi sources, but
the driver actually programs a mode, so there is no need to check if
there will be a table entry with register contents matching the requested
mode.
Diffstat (limited to 'src/smi501_crtc.c')
-rw-r--r-- | src/smi501_crtc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/smi501_crtc.c b/src/smi501_crtc.c index 54152fc..3fc0912 100644 --- a/src/smi501_crtc.c +++ b/src/smi501_crtc.c @@ -65,8 +65,7 @@ SMI501_CrtcVideoInit_lcd(xf86CrtcPtr crtc) mode->panel_fb_width.f.offset = pitch >> 4; mode->panel_fb_width.f.width = width >> 4; - if (pSmi->Bpp > 1) - mode->panel_display_ctl.f.gamma = 1; + mode->panel_display_ctl.f.gamma = pSmi->Bpp > 1; WRITE_SCR(pSmi, PANEL_DISPLAY_CTL, mode->panel_display_ctl.value); WRITE_SCR(pSmi, PANEL_FB_WIDTH, mode->panel_fb_width.value); @@ -100,8 +99,7 @@ SMI501_CrtcVideoInit_crt(xf86CrtcPtr crtc) mode->crt_fb_width.f.offset = pitch >> 4; mode->crt_fb_width.f.width = width >> 4; - if (pSmi->Bpp > 1) - mode->crt_display_ctl.f.gamma = 1; + mode->crt_display_ctl.f.gamma = pSmi->Bpp > 1; WRITE_SCR(pSmi, CRT_DISPLAY_CTL, mode->crt_display_ctl.value); WRITE_SCR(pSmi, CRT_FB_WIDTH, mode->crt_fb_width.value); |