Commit 8193e6ad authored by Jamal Shareef's avatar Jamal Shareef Committed by Greg Kroah-Hartman

staging: sm750fb: Fix lines over 80 characters

Fix lines over 80 character warnings. Issue found
by checkpatch.
Signed-off-by: default avatarJamal Shareef <jamal.k.shareef@gmail.com>
Link: https://lore.kernel.org/r/1f635b0469f93d8460d513f5fabd877dc5054a33.1571108943.git.jamal.k.shareef@gmail.comSigned-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5ffa18ec
...@@ -147,8 +147,8 @@ void ddk750_set_logical_disp_out(enum disp_output output) ...@@ -147,8 +147,8 @@ void ddk750_set_logical_disp_out(enum disp_output output)
if (output & PNL_SEQ_USAGE) { if (output & PNL_SEQ_USAGE) {
/* set panel sequence */ /* set panel sequence */
sw_panel_power_sequence((output & PNL_SEQ_MASK) >> PNL_SEQ_OFFSET, sw_panel_power_sequence((output & PNL_SEQ_MASK) >>
4); PNL_SEQ_OFFSET, 4);
} }
if (output & DAC_USAGE) if (output & DAC_USAGE)
......
...@@ -13,8 +13,9 @@ ...@@ -13,8 +13,9 @@
* HW only supports 7 predefined pixel clocks, and clock select is * HW only supports 7 predefined pixel clocks, and clock select is
* in bit 29:27 of Display Control register. * in bit 29:27 of Display Control register.
*/ */
static unsigned long displayControlAdjust_SM750LE(struct mode_parameter *pModeParam, static unsigned long
unsigned long dispControl) displayControlAdjust_SM750LE(struct mode_parameter *pModeParam,
unsigned long dispControl)
{ {
unsigned long x, y; unsigned long x, y;
......
...@@ -39,8 +39,10 @@ unsigned short sii164GetVendorID(void) ...@@ -39,8 +39,10 @@ unsigned short sii164GetVendorID(void)
{ {
unsigned short vendorID; unsigned short vendorID;
vendorID = ((unsigned short)i2cReadReg(SII164_I2C_ADDRESS, SII164_VENDOR_ID_HIGH) << 8) | vendorID = ((unsigned short)i2cReadReg(SII164_I2C_ADDRESS,
(unsigned short)i2cReadReg(SII164_I2C_ADDRESS, SII164_VENDOR_ID_LOW); SII164_VENDOR_ID_HIGH) << 8) |
(unsigned short)i2cReadReg(SII164_I2C_ADDRESS,
SII164_VENDOR_ID_LOW);
return vendorID; return vendorID;
} }
...@@ -56,13 +58,18 @@ unsigned short sii164GetDeviceID(void) ...@@ -56,13 +58,18 @@ unsigned short sii164GetDeviceID(void)
{ {
unsigned short deviceID; unsigned short deviceID;
deviceID = ((unsigned short)i2cReadReg(SII164_I2C_ADDRESS, SII164_DEVICE_ID_HIGH) << 8) | deviceID = ((unsigned short)i2cReadReg(SII164_I2C_ADDRESS,
(unsigned short)i2cReadReg(SII164_I2C_ADDRESS, SII164_DEVICE_ID_LOW); SII164_DEVICE_ID_HIGH) << 8) |
(unsigned short)i2cReadReg(SII164_I2C_ADDRESS,
SII164_DEVICE_ID_LOW);
return deviceID; return deviceID;
} }
/* DVI.C will handle all SiI164 chip stuffs and try it best to make code minimal and useful */ /*
* DVI.C will handle all SiI164 chip stuffs and try its best to make code
* minimal and useful
*/
/* /*
* sii164InitChip * sii164InitChip
...@@ -133,7 +140,8 @@ long sii164InitChip(unsigned char edge_select, ...@@ -133,7 +140,8 @@ long sii164InitChip(unsigned char edge_select,
#endif #endif
/* Check if SII164 Chip exists */ /* Check if SII164 Chip exists */
if ((sii164GetVendorID() == SII164_VENDOR_ID) && (sii164GetDeviceID() == SII164_DEVICE_ID)) { if ((sii164GetVendorID() == SII164_VENDOR_ID) &&
(sii164GetDeviceID() == SII164_DEVICE_ID)) {
/* /*
* Initialize SII164 controller chip. * Initialize SII164 controller chip.
*/ */
...@@ -254,7 +262,9 @@ void sii164ResetChip(void) ...@@ -254,7 +262,9 @@ void sii164ResetChip(void)
/* /*
* sii164GetChipString * sii164GetChipString
* This function returns a char string name of the current DVI Controller chip. * This function returns a char string name of the current DVI Controller
* chip.
*
* It's convenient for application need to display the chip name. * It's convenient for application need to display the chip name.
*/ */
char *sii164GetChipString(void) char *sii164GetChipString(void)
...@@ -330,8 +340,8 @@ void sii164EnableHotPlugDetection(unsigned char enableHotPlug) ...@@ -330,8 +340,8 @@ void sii164EnableHotPlugDetection(unsigned char enableHotPlug)
detectReg = i2cReadReg(SII164_I2C_ADDRESS, SII164_DETECT); detectReg = i2cReadReg(SII164_I2C_ADDRESS, SII164_DETECT);
/* Depending on each DVI controller, need to enable the hot plug based on each /* Depending on each DVI controller, need to enable the hot plug based
* individual chip design. * on each individual chip design.
*/ */
if (enableHotPlug != 0) if (enableHotPlug != 0)
sii164SelectHotPlugDetectionMode(SII164_HOTPLUG_USE_MDI); sii164SelectHotPlugDetectionMode(SII164_HOTPLUG_USE_MDI);
......
...@@ -6,10 +6,13 @@ ...@@ -6,10 +6,13 @@
/* Hot Plug detection mode structure */ /* Hot Plug detection mode structure */
enum sii164_hot_plug_mode { enum sii164_hot_plug_mode {
SII164_HOTPLUG_DISABLE = 0, /* Disable Hot Plug output bit (always high). */ SII164_HOTPLUG_DISABLE = 0, /* Disable Hot Plug output bit
SII164_HOTPLUG_USE_MDI, /* Use Monitor Detect Interrupt bit. */ * (always high).
SII164_HOTPLUG_USE_RSEN, /* Use Receiver Sense detect bit. */ */
SII164_HOTPLUG_USE_HTPLG /* Use Hot Plug detect bit. */
SII164_HOTPLUG_USE_MDI, /* Use Monitor Detect Interrupt bit. */
SII164_HOTPLUG_USE_RSEN, /* Use Receiver Sense detect bit. */
SII164_HOTPLUG_USE_HTPLG /* Use Hot Plug detect bit. */
}; };
/* Silicon Image SiI164 chip prototype */ /* Silicon Image SiI164 chip prototype */
......
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