IF_DEF_LVDS cannot be set if ProgrammingCRT2 flag is set, so remove the
check to simplify the code.

Signed-off-by: Aaro Koskinen <[email protected]>
---
 drivers/staging/xgifb/vb_setmode.c |   11 +++--------
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/xgifb/vb_setmode.c 
b/drivers/staging/xgifb/vb_setmode.c
index 49157a2..99c6c25 100644
--- a/drivers/staging/xgifb/vb_setmode.c
+++ b/drivers/staging/xgifb/vb_setmode.c
@@ -5308,15 +5308,10 @@ unsigned short XGI_GetRatePtrCRT2(struct 
xgi_hw_device_info *pXGIHWDE,
 
        if (pVBInfo->SetFlag & ProgrammingCRT2) {
                if (pVBInfo->VBInfo & (SetCRT2ToLCD | XGI_SetCRT2ToLCDA)) {
-                       if (pVBInfo->IF_DEF_LVDS == 0) {
-                               temp = LCDARefreshIndex[
-                                       pVBInfo->LCDResInfo & 0x07];
+                       temp = LCDARefreshIndex[pVBInfo->LCDResInfo & 0x07];
 
-                               if (index > temp)
-                                       index = temp;
-                       } else {
-                               index = 0;
-                       }
+                       if (index > temp)
+                               index = temp;
                }
        }
 
-- 
1.7.10.4

_______________________________________________
devel mailing list
[email protected]
http://driverdev.linuxdriverproject.org/mailman/listinfo/devel

Reply via email to