staging: xgifb: Compress return logic into one line.
Simplify return logic to avoid unnecessary variable assignments.
Coccinelle was used with this semantic patch:
@@
local idexpression ret;
expression e;
@@
-ret =
+return
e;
-return ret;
Signed-off-by: Elise Lennion <elise.lennion@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ce439c425b
commit
dcb9360e66
1 changed files with 3 additions and 6 deletions
|
|
@ -1682,13 +1682,11 @@ static unsigned char XGI_GetVCLKPtr(unsigned short RefreshRateTableIndex,
|
|||
}
|
||||
|
||||
if (pVBInfo->TVInfo & TVSetYPbPr750p) {
|
||||
tempal = XGI_YPbPr750pVCLK;
|
||||
return tempal;
|
||||
return XGI_YPbPr750pVCLK;
|
||||
}
|
||||
|
||||
if (pVBInfo->TVInfo & TVSetYPbPr525p) {
|
||||
tempal = YPbPr525pVCLK;
|
||||
return tempal;
|
||||
return YPbPr525pVCLK;
|
||||
}
|
||||
|
||||
tempal = NTSC1024VCLK;
|
||||
|
|
@ -1705,8 +1703,7 @@ static unsigned char XGI_GetVCLKPtr(unsigned short RefreshRateTableIndex,
|
|||
} /* {End of VB} */
|
||||
|
||||
inb((pVBInfo->P3ca + 0x02));
|
||||
tempal = XGI330_RefIndex[RefreshRateTableIndex].Ext_CRTVCLK;
|
||||
return tempal;
|
||||
return XGI330_RefIndex[RefreshRateTableIndex].Ext_CRTVCLK;
|
||||
}
|
||||
|
||||
static void XGI_GetVCLKLen(unsigned char tempal, unsigned char *di_0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue