Commit 0c23b6d2 authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Greg Kroah-Hartman

staging: xgifb: delete duplicated TV data tables

Delete redundant TV data tables. Replace as follows:

	XGI_EPLCHTVDataPtr	==> xgifb_chrontel_tv
	XGI_EPLCHTVRegPtr	==> xgifb_chrontel_tv
Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent cc5c2aeb
......@@ -2325,7 +2325,8 @@ static void *XGI_GetTVPtr(unsigned short BX, unsigned short ModeNo,
tempdi = NULL; /*EPLCHTVCRT1Ptr_V;*/
break;
case 2:
tempdi = XGI_EPLCHTVDataPtr;
case 6:
tempdi = xgifb_chrontel_tv;
break;
case 3:
tempdi = NULL;
......@@ -2336,9 +2337,6 @@ static void *XGI_GetTVPtr(unsigned short BX, unsigned short ModeNo,
case 5:
tempdi = NULL;
break;
case 6:
tempdi = XGI_EPLCHTVRegPtr;
break;
default:
break;
}
......
......@@ -2476,21 +2476,12 @@ static struct XGI330_TVDataTablStruct XGI_TVDataTable[] = {
{0xffff, 0x0000, 12} /* END */
};
/* ;;Chrontel 7017 TV Timing List */
static struct XGI330_TVDataTablStruct XGI_EPLCHTVDataPtr[] = {
{0x0011, 0x0000, 0}, /* XGI_CHTVUNTSCData */
{0x0011, 0x0010, 1}, /* XGI_CHTVONTSCData */
{0x0011, 0x0001, 2}, /* XGI_CHTVUPALData */
{0x0011, 0x0011, 3}, /* XGI_CHTVOPALData */
{0xFFFF, 0x0000, 4}
};
/* ;;Chrontel 7017 TV Reg. List */
static struct XGI330_TVDataTablStruct XGI_EPLCHTVRegPtr[] = {
{0x0011, 0x0000, 0}, /* XGI_CHTVRegUNTSC */
{0x0011, 0x0010, 1}, /* XGI_CHTVRegONTSC */
{0x0011, 0x0001, 2}, /* XGI_CHTVRegUPAL */
{0x0011, 0x0011, 3}, /* XGI_CHTVRegOPAL */
/* 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}
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment