staging: xgifb: vb_setmode.c Braces single statement blocks
Make suggested checkpatch modificationfor WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Walt Feasel <waltfeasel@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ad1698aab1
commit
c193e792ed
|
@ -1681,13 +1681,11 @@ static unsigned char XGI_GetVCLKPtr(unsigned short RefreshRateTableIndex,
|
|||
return tempal;
|
||||
}
|
||||
|
||||
if (pVBInfo->TVInfo & TVSetYPbPr750p) {
|
||||
if (pVBInfo->TVInfo & TVSetYPbPr750p)
|
||||
return XGI_YPbPr750pVCLK;
|
||||
}
|
||||
|
||||
if (pVBInfo->TVInfo & TVSetYPbPr525p) {
|
||||
if (pVBInfo->TVInfo & TVSetYPbPr525p)
|
||||
return YPbPr525pVCLK;
|
||||
}
|
||||
|
||||
tempal = NTSC1024VCLK;
|
||||
|
||||
|
|
Loading…
Reference in New Issue