mirror of https://gitee.com/openkylin/linux.git
staging: xgifb: remove blank line after open brace
delete a blank line after an open brace to fix the check patch issue, Blank lines aren't necessary after an open brace '{'. Signed-off-by: Gargi Sharma <gs051095@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
aa18660f62
commit
909bb2b41f
|
@ -1647,7 +1647,6 @@ static void XGI_GetLCDVCLKPtr(unsigned char *di_0, unsigned char *di_1,
|
|||
static unsigned char XGI_GetVCLKPtr(unsigned short RefreshRateTableIndex,
|
||||
unsigned short ModeIdIndex, struct vb_device_info *pVBInfo)
|
||||
{
|
||||
|
||||
unsigned short index, modeflag;
|
||||
unsigned char tempal;
|
||||
|
||||
|
@ -2291,7 +2290,6 @@ static void XGI_DisplayOn(struct xgifb_video_info *xgifb_info,
|
|||
struct xgi_hw_device_info *pXGIHWDE,
|
||||
struct vb_device_info *pVBInfo)
|
||||
{
|
||||
|
||||
xgifb_reg_and_or(pVBInfo->P3c4, 0x01, 0xDF, 0x00);
|
||||
if (pXGIHWDE->jChipType == XG21) {
|
||||
if (pVBInfo->IF_DEF_LVDS == 1) {
|
||||
|
@ -2338,7 +2336,6 @@ void XGI_DisplayOff(struct xgifb_video_info *xgifb_info,
|
|||
struct xgi_hw_device_info *pXGIHWDE,
|
||||
struct vb_device_info *pVBInfo)
|
||||
{
|
||||
|
||||
if (pXGIHWDE->jChipType == XG21) {
|
||||
if (pVBInfo->IF_DEF_LVDS == 1) {
|
||||
/* LVDS backlight off */
|
||||
|
@ -2455,7 +2452,6 @@ static void XGI_GetCRT2ResInfo(unsigned short ModeIdIndex,
|
|||
|
||||
static unsigned char XGI_IsLCDDualLink(struct vb_device_info *pVBInfo)
|
||||
{
|
||||
|
||||
if ((pVBInfo->VBInfo & (SetCRT2ToLCD | XGI_SetCRT2ToLCDA)) &&
|
||||
(pVBInfo->LCDInfo & SetLCDDualLink)) /* shampoo0129 */
|
||||
return 1;
|
||||
|
@ -4389,7 +4385,6 @@ static void xgifb_set_lvds(struct xgifb_video_info *xgifb_info,
|
|||
(value << 2) & 0x7C);
|
||||
|
||||
for (temp = 0, value = 0; temp < 3; temp++) {
|
||||
|
||||
xgifb_reg_and_or(pVBInfo->P3c4, 0x31, ~0x30, value);
|
||||
xgifb_reg_set(pVBInfo->P3c4,
|
||||
0x2B, xgifb_info->lvds_data.VCLKData1);
|
||||
|
@ -5416,7 +5411,6 @@ static void XGI_SetCRT1Group(struct xgifb_video_info *xgifb_info,
|
|||
if (HwDeviceExtension->jChipType >= XG21) {
|
||||
temp = xgifb_reg_get(pVBInfo->P3d4, 0x38);
|
||||
if (temp & 0xA0) {
|
||||
|
||||
if (HwDeviceExtension->jChipType == XG27)
|
||||
XGI_SetXG27CRTC(RefreshRateTableIndex, pVBInfo);
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue