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:
Walt Feasel 2016-11-17 19:12:51 -05:00 committed by Greg Kroah-Hartman
parent ad1698aab1
commit c193e792ed
1 changed files with 2 additions and 4 deletions

View File

@ -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;