Commit 7aa546e4 authored by Janani Ravichandran's avatar Janani Ravichandran Committed by Greg Kroah-Hartman

staging: xgifb: Remove unneeded parentheses

Remove unneeded parentheses around the right hand side of assignments as
they are not needed. Semantic patch:

@@
expression a, b, c;
@@

(
  a = (b == c)
|
  a =
- (
  b
- )
)
Signed-off-by: default avatarJanani Ravichandran <janani.rvchndrn@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cb601424
...@@ -655,26 +655,26 @@ static void XGIfb_pre_setmode(struct xgifb_video_info *xgifb_info) ...@@ -655,26 +655,26 @@ static void XGIfb_pre_setmode(struct xgifb_video_info *xgifb_info)
switch (xgifb_info->display2) { switch (xgifb_info->display2) {
case XGIFB_DISP_CRT: case XGIFB_DISP_CRT:
cr30 = (SIS_VB_OUTPUT_CRT2 | SIS_SIMULTANEOUS_VIEW_ENABLE); cr30 = SIS_VB_OUTPUT_CRT2 | SIS_SIMULTANEOUS_VIEW_ENABLE;
cr31 |= SIS_DRIVER_MODE; cr31 |= SIS_DRIVER_MODE;
break; break;
case XGIFB_DISP_LCD: case XGIFB_DISP_LCD:
cr30 = (SIS_VB_OUTPUT_LCD | SIS_SIMULTANEOUS_VIEW_ENABLE); cr30 = SIS_VB_OUTPUT_LCD | SIS_SIMULTANEOUS_VIEW_ENABLE;
cr31 |= SIS_DRIVER_MODE; cr31 |= SIS_DRIVER_MODE;
break; break;
case XGIFB_DISP_TV: case XGIFB_DISP_TV:
if (xgifb_info->TV_type == TVMODE_HIVISION) if (xgifb_info->TV_type == TVMODE_HIVISION)
cr30 = (SIS_VB_OUTPUT_HIVISION cr30 = SIS_VB_OUTPUT_HIVISION
| SIS_SIMULTANEOUS_VIEW_ENABLE); | SIS_SIMULTANEOUS_VIEW_ENABLE;
else if (xgifb_info->TV_plug == TVPLUG_SVIDEO) else if (xgifb_info->TV_plug == TVPLUG_SVIDEO)
cr30 = (SIS_VB_OUTPUT_SVIDEO cr30 = SIS_VB_OUTPUT_SVIDEO
| SIS_SIMULTANEOUS_VIEW_ENABLE); | SIS_SIMULTANEOUS_VIEW_ENABLE;
else if (xgifb_info->TV_plug == TVPLUG_COMPOSITE) else if (xgifb_info->TV_plug == TVPLUG_COMPOSITE)
cr30 = (SIS_VB_OUTPUT_COMPOSITE cr30 = SIS_VB_OUTPUT_COMPOSITE
| SIS_SIMULTANEOUS_VIEW_ENABLE); | SIS_SIMULTANEOUS_VIEW_ENABLE;
else if (xgifb_info->TV_plug == TVPLUG_SCART) else if (xgifb_info->TV_plug == TVPLUG_SCART)
cr30 = (SIS_VB_OUTPUT_SCART cr30 = SIS_VB_OUTPUT_SCART
| SIS_SIMULTANEOUS_VIEW_ENABLE); | SIS_SIMULTANEOUS_VIEW_ENABLE;
cr31 |= SIS_DRIVER_MODE; cr31 |= SIS_DRIVER_MODE;
if (XGIfb_tvmode == 1 || xgifb_info->TV_type == TVMODE_PAL) if (XGIfb_tvmode == 1 || xgifb_info->TV_type == TVMODE_PAL)
......
...@@ -1899,8 +1899,8 @@ static void XGI_GetVBInfo(unsigned short ModeIdIndex, ...@@ -1899,8 +1899,8 @@ static void XGI_GetVBInfo(unsigned short ModeIdIndex,
push <<= 8; push <<= 8;
tempax = temp << 8; tempax = temp << 8;
tempbx = tempbx | tempax; tempbx = tempbx | tempax;
temp = (SetCRT2ToDualEdge | SetCRT2ToYPbPr525750 | XGI_SetCRT2ToLCDA temp = SetCRT2ToDualEdge | SetCRT2ToYPbPr525750 | XGI_SetCRT2ToLCDA
| SetInSlaveMode | DisableCRT2Display); | SetInSlaveMode | DisableCRT2Display;
temp = 0xFFFF ^ temp; temp = 0xFFFF ^ temp;
tempbx &= temp; tempbx &= temp;
...@@ -2881,7 +2881,7 @@ static void XGI_SetGroup1(unsigned short ModeIdIndex, ...@@ -2881,7 +2881,7 @@ static void XGI_SetGroup1(unsigned short ModeIdIndex,
xgifb_reg_set(pVBInfo->Part1Port, 0x0C, temp); xgifb_reg_set(pVBInfo->Part1Port, 0x0C, temp);
temp = tempcx & 0x00FF; temp = tempcx & 0x00FF;
xgifb_reg_set(pVBInfo->Part1Port, 0x0D, temp); xgifb_reg_set(pVBInfo->Part1Port, 0x0D, temp);
tempcx = (pVBInfo->VGAVT - 1); tempcx = pVBInfo->VGAVT - 1;
temp = tempcx & 0x00FF; temp = tempcx & 0x00FF;
xgifb_reg_set(pVBInfo->Part1Port, 0x0E, temp); xgifb_reg_set(pVBInfo->Part1Port, 0x0E, temp);
...@@ -2919,7 +2919,7 @@ static void XGI_SetGroup1(unsigned short ModeIdIndex, ...@@ -2919,7 +2919,7 @@ static void XGI_SetGroup1(unsigned short ModeIdIndex,
temp = tempbx & 0x00FF; temp = tempbx & 0x00FF;
xgifb_reg_set(pVBInfo->Part1Port, 0x10, temp); xgifb_reg_set(pVBInfo->Part1Port, 0x10, temp);
temp = ((tempbx & 0xFF00) >> 8) << 4; temp = ((tempbx & 0xFF00) >> 8) << 4;
temp = ((tempcx & 0x000F) | (temp)); temp = (tempcx & 0x000F) | (temp);
xgifb_reg_set(pVBInfo->Part1Port, 0x11, temp); xgifb_reg_set(pVBInfo->Part1Port, 0x11, temp);
tempax = 0; tempax = 0;
...@@ -4074,7 +4074,7 @@ static void XGI_SetGroup4(unsigned short ModeIdIndex, ...@@ -4074,7 +4074,7 @@ static void XGI_SetGroup4(unsigned short ModeIdIndex,
tempcx |= 0x04000; tempcx |= 0x04000;
if (tempeax <= tempebx) { if (tempeax <= tempebx) {
tempcx = (tempcx & (~0x4000)); tempcx = tempcx & (~0x4000);
tempeax = pVBInfo->VGAVDE; tempeax = pVBInfo->VGAVDE;
} else { } else {
tempeax -= tempebx; tempeax -= tempebx;
...@@ -4124,7 +4124,7 @@ static void XGI_SetGroup4(unsigned short ModeIdIndex, ...@@ -4124,7 +4124,7 @@ static void XGI_SetGroup4(unsigned short ModeIdIndex,
temp = (tempax & 0xFF00) >> 8; temp = (tempax & 0xFF00) >> 8;
temp = (temp & 0x0003) << 4; temp = (temp & 0x0003) << 4;
xgifb_reg_set(pVBInfo->Part4Port, 0x1E, temp); xgifb_reg_set(pVBInfo->Part4Port, 0x1E, temp);
temp = (tempax & 0x00FF); temp = tempax & 0x00FF;
xgifb_reg_set(pVBInfo->Part4Port, 0x1D, temp); xgifb_reg_set(pVBInfo->Part4Port, 0x1D, temp);
if (pVBInfo->VBInfo & (SetCRT2ToTV | SetCRT2ToHiVision)) { if (pVBInfo->VBInfo & (SetCRT2ToTV | SetCRT2ToHiVision)) {
...@@ -4926,7 +4926,7 @@ static void XGI_SetCRT2ModeRegs(struct vb_device_info *pVBInfo) ...@@ -4926,7 +4926,7 @@ static void XGI_SetCRT2ModeRegs(struct vb_device_info *pVBInfo)
tempcl -= ModeVGA; tempcl -= ModeVGA;
if (tempcl >= 0) { if (tempcl >= 0) {
/* BT Color */ /* BT Color */
tempah = (0x008 >> tempcl); tempah = 0x008 >> tempcl;
if (tempah == 0) if (tempah == 0)
tempah = 1; tempah = 1;
tempah |= 0x040; tempah |= 0x040;
......
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