staging: xgifb: delete Chrontel TV data
authorAaro Koskinen <aaro.koskinen@iki.fi>
Mon, 10 Sep 2012 21:15:20 +0000 (00:15 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 10 Sep 2012 22:48:16 +0000 (15:48 -0700)
Delete unused Chrontel TV data.

Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/xgifb/vb_setmode.c
drivers/staging/xgifb/vb_table.h

index 721880465f6989bb6df854a8bc7f8a7360587206..ae617c67c3fad1a5b2b975f93ab6840ea5c4a090 100644 (file)
@@ -1770,12 +1770,10 @@ static void *XGI_GetTVPtr(unsigned short ModeNo,
                struct vb_device_info *pVBInfo)
 {
        unsigned short i, tempdx, tempal, modeflag;
-       struct XGI330_TVDataTablStruct *tempdi = NULL;
 
        modeflag = pVBInfo->EModeIDTable[ModeIdIndex].Ext_ModeFlag;
        tempal = pVBInfo->RefIndex[RefreshRateTableIndex].Ext_CRT2CRTC;
        tempal = tempal & 0x3f;
-       tempdi = XGI_TVDataTable;
        tempdx = pVBInfo->TVInfo;
 
        if (pVBInfo->VBInfo & SetInSlaveMode)
@@ -1786,13 +1784,14 @@ static void *XGI_GetTVPtr(unsigned short ModeNo,
 
        i = 0;
 
-       while (tempdi[i].MASK != 0xffff) {
-               if ((tempdx & tempdi[i].MASK) == tempdi[i].CAP)
+       while (XGI_TVDataTable[i].MASK != 0xffff) {
+               if ((tempdx & XGI_TVDataTable[i].MASK) ==
+                       XGI_TVDataTable[i].CAP)
                        break;
                i++;
        }
 
-       switch (tempdi[i].DATAPTR) {
+       switch (XGI_TVDataTable[i].DATAPTR) {
        case 0:
                return &XGI_ExtPALData[tempal];
                break;
index d823bb08bac1570ab9b15d74883088166368fa34..34e538df790c159b5450acfa81b244b2c1732cc2 100644 (file)
@@ -1501,42 +1501,6 @@ static struct XGI330_LCDDataDesStruct2 XGI_LVDSNoScalingDesDatax75[] = {
        {0, 1328,   0,  771, 112, 6}  /* ; 0A (1280x768x75Hz) */
 };
 
-static struct SiS_LVDSData  XGI_CHTVUNTSCData[] = {
-       { 840, 600,  840, 600},
-       { 840, 600,  840, 600},
-       { 840, 600,  840, 600},
-       { 840, 600,  840, 600},
-       { 784, 600,  784, 600},
-       {1064, 750, 1064, 750}
-};
-
-static struct SiS_LVDSData  XGI_CHTVONTSCData[] = {
-       { 840, 525,  840, 525},
-       { 840, 525,  840, 525},
-       { 840, 525,  840, 525},
-       { 840, 525,  840, 525},
-       { 784, 525,  784, 525},
-       {1040, 700, 1040, 700}
-};
-
-static struct SiS_LVDSData  XGI_CHTVUPALData[] = {
-       {1008, 625, 1008, 625},
-       {1008, 625, 1008, 625},
-       {1008, 625, 1008, 625},
-       {1008, 625, 1008, 625},
-       { 840, 750,  840, 750},
-       { 936, 836,  936, 836}
-};
-
-static struct SiS_LVDSData  XGI_CHTVOPALData[] = {
-       {1008, 625, 1008, 625},
-       {1008, 625, 1008, 625},
-       {1008, 625, 1008, 625},
-       {1008, 625, 1008, 625},
-       {840,  625,  840, 625},
-       {960,  750,  960, 750}
-};
-
 /* CR00,CR02,CR03,CR04,CR05,SR0B,SR0C,SR0E */
 static struct XGI_LVDSCRT1HDataStruct  XGI_LVDSCRT11024x768_1_H[] = {
        { {0x4B, 0x27, 0x8F, 0x32, 0x1B, 0x00, 0x45, 0x00} }, /* 00 (320x) */
@@ -1925,15 +1889,6 @@ static struct XGI330_TVDataTablStruct XGI_TVDataTable[] = {
        {0xffff, 0x0000, 12}  /* END */
 };
 
-/* Chrontel 7017 TV List */
-static struct XGI330_TVDataTablStruct xgifb_chrontel_tv[] = {
-       {0x0011, 0x0000, 0}, /* UNTSC */
-       {0x0011, 0x0010, 1}, /* ONTSC */
-       {0x0011, 0x0001, 2}, /* UPAL */
-       {0x0011, 0x0011, 3}, /* OPAL */
-       {0xFFFF, 0x0000, 4}
-};
-
 static unsigned short LCDLenList[] = {
        LVDSCRT1Len_H,
        LVDSCRT1Len_V,