Commit 694683f6 authored by Vitor Braga's avatar Vitor Braga Committed by Greg Kroah-Hartman

staging: xgifb coding style cleanup

This fixes "missing a blank line after declaration" warnings from
checkpatch.pl for driver xgifb. The driver has no remaining errors or
warnings from checkpatch.pl
Signed-off-by: default avatarVitor Braga <vitorpybraga@gmail.com>
Reviewed-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 838201aa
...@@ -66,6 +66,7 @@ static int XGIfb_mode_rate_to_dclock(struct vb_device_info *XGI_Pr, ...@@ -66,6 +66,7 @@ static int XGIfb_mode_rate_to_dclock(struct vb_device_info *XGI_Pr,
unsigned short ModeIdIndex = 0, ClockIndex = 0; unsigned short ModeIdIndex = 0, ClockIndex = 0;
unsigned short RefreshRateTableIndex = 0; unsigned short RefreshRateTableIndex = 0;
int Clock; int Clock;
InitTo330Pointer(HwDeviceExtension->jChipType, XGI_Pr); InitTo330Pointer(HwDeviceExtension->jChipType, XGI_Pr);
XGI_SearchModeID(ModeNo, &ModeIdIndex); XGI_SearchModeID(ModeNo, &ModeIdIndex);
...@@ -95,6 +96,7 @@ static int XGIfb_mode_rate_to_ddata(struct vb_device_info *XGI_Pr, ...@@ -95,6 +96,7 @@ static int XGIfb_mode_rate_to_ddata(struct vb_device_info *XGI_Pr,
unsigned short HRE, HBE, HRS, HDE; unsigned short HRE, HBE, HRS, HDE;
unsigned char sr_data, cr_data, cr_data2; unsigned char sr_data, cr_data, cr_data2;
int B, C, D, F, temp, j; int B, C, D, F, temp, j;
InitTo330Pointer(HwDeviceExtension->jChipType, XGI_Pr); InitTo330Pointer(HwDeviceExtension->jChipType, XGI_Pr);
if (!XGI_SearchModeID(ModeNo, &ModeIdIndex)) if (!XGI_SearchModeID(ModeNo, &ModeIdIndex))
return 0; return 0;
......
...@@ -130,6 +130,7 @@ static void XGINew_DDRII_Bootup_XG27( ...@@ -130,6 +130,7 @@ static void XGINew_DDRII_Bootup_XG27(
unsigned long P3c4, struct vb_device_info *pVBInfo) unsigned long P3c4, struct vb_device_info *pVBInfo)
{ {
unsigned long P3d4 = P3c4 + 0x10; unsigned long P3d4 = P3c4 + 0x10;
pVBInfo->ram_type = XGINew_GetXG20DRAMType(HwDeviceExtension, pVBInfo); pVBInfo->ram_type = XGINew_GetXG20DRAMType(HwDeviceExtension, pVBInfo);
XGINew_SetMemoryClock(pVBInfo); XGINew_SetMemoryClock(pVBInfo);
...@@ -389,6 +390,7 @@ static void XGI_SetDRAM_Helper(unsigned long P3d4, u8 seed, u8 temp2, u8 reg, ...@@ -389,6 +390,7 @@ static void XGI_SetDRAM_Helper(unsigned long P3d4, u8 seed, u8 temp2, u8 reg,
u8 shift_factor, u8 mask1, u8 mask2) u8 shift_factor, u8 mask1, u8 mask2)
{ {
u8 j; u8 j;
for (j = 0; j < 4; j++) { for (j = 0; j < 4; j++) {
temp2 |= (((seed >> (2 * j)) & 0x03) << shift_factor); temp2 |= (((seed >> (2 * j)) & 0x03) << shift_factor);
xgifb_reg_set(P3d4, reg, temp2); xgifb_reg_set(P3d4, reg, temp2);
......
...@@ -49,6 +49,7 @@ void InitTo330Pointer(unsigned char ChipType, struct vb_device_info *pVBInfo) ...@@ -49,6 +49,7 @@ void InitTo330Pointer(unsigned char ChipType, struct vb_device_info *pVBInfo)
if (ChipType == XG27) { if (ChipType == XG27) {
unsigned char temp; unsigned char temp;
pVBInfo->MCLKData = XGI27New_MCLKData; pVBInfo->MCLKData = XGI27New_MCLKData;
pVBInfo->CR40 = XGI27_cr41; pVBInfo->CR40 = XGI27_cr41;
pVBInfo->XGINew_CR97 = 0xc1; pVBInfo->XGINew_CR97 = 0xc1;
...@@ -5222,6 +5223,7 @@ void XGI_SenseCRT1(struct vb_device_info *pVBInfo) ...@@ -5222,6 +5223,7 @@ void XGI_SenseCRT1(struct vb_device_info *pVBInfo)
unsigned short temp; unsigned short temp;
int i; int i;
xgifb_reg_set(pVBInfo->P3c4, 0x05, 0x86); xgifb_reg_set(pVBInfo->P3c4, 0x05, 0x86);
/* to fix XG42 single LCD sense to CRT+LCD */ /* to fix XG42 single LCD sense to CRT+LCD */
......
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