Commit 22171e32 authored by Manoj Sawai's avatar Manoj Sawai Committed by Greg Kroah-Hartman

Staging: xgifb: vb_setmode.c: Fix checkpath warnings

Fix the following checkpatch.pl warnings:

1: Avoid multiple line dereference - prefer
   'XGI330_RefIndex[RefreshRateTableIndex+i].ModeID'

2: Avoid multiple line dereference - prefer
   'XGI330_RefIndex[RefreshRateTableIndex+(*i)].Ext_InfoFlag'
Signed-off-by: default avatarManoj Sawai <mas@iitkgp.ac.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 8b0a4c10
...@@ -5090,8 +5090,7 @@ unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE, ...@@ -5090,8 +5090,7 @@ unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE,
i = 0; i = 0;
do { do {
if (XGI330_RefIndex[RefreshRateTableIndex + i]. if (XGI330_RefIndex[RefreshRateTableIndex + i].ModeID != ModeNo)
ModeID != ModeNo)
break; break;
temp = XGI330_RefIndex[RefreshRateTableIndex + i].Ext_InfoFlag; temp = XGI330_RefIndex[RefreshRateTableIndex + i].Ext_InfoFlag;
temp &= ModeTypeMask; temp &= ModeTypeMask;
...@@ -5103,8 +5102,7 @@ unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE, ...@@ -5103,8 +5102,7 @@ unsigned short XGI_GetRatePtrCRT2(struct xgi_hw_device_info *pXGIHWDE,
} while (index != 0xFFFF); } while (index != 0xFFFF);
if (!(pVBInfo->VBInfo & SetCRT2ToRAMDAC)) { if (!(pVBInfo->VBInfo & SetCRT2ToRAMDAC)) {
if (pVBInfo->VBInfo & SetInSlaveMode) { if (pVBInfo->VBInfo & SetInSlaveMode) {
temp = XGI330_RefIndex[RefreshRateTableIndex + i - 1]. temp = XGI330_RefIndex[RefreshRateTableIndex + i - 1].Ext_InfoFlag;
Ext_InfoFlag;
if (temp & InterlaceMode) if (temp & InterlaceMode)
i++; i++;
} }
......
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