mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-09 00:43:08 -04:00
staging: sm750fb: Add space around '<<'
Add space around operator '<<'. Problem found using checkpatch.pl CHECK: spaces preferred around that '<<' (ctx:VxV) Signed-off-by: Amitoj Kaur Chawla <amitoj1606@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
aa355c8645
commit
e80ef45dad
@@ -228,21 +228,21 @@ void ddk750_setLogicalDispOut(disp_output_t output)
|
||||
|
||||
if (output & PRI_TP_USAGE) {
|
||||
/* set primary timing and plane en_bit */
|
||||
setDisplayControl(0, (output&PRI_TP_MASK)>>PRI_TP_OFFSET);
|
||||
setDisplayControl(0, (output&PRI_TP_MASK) >> PRI_TP_OFFSET);
|
||||
}
|
||||
|
||||
if (output & SEC_TP_USAGE) {
|
||||
/* set secondary timing and plane en_bit*/
|
||||
setDisplayControl(1, (output&SEC_TP_MASK)>>SEC_TP_OFFSET);
|
||||
setDisplayControl(1, (output&SEC_TP_MASK) >> SEC_TP_OFFSET);
|
||||
}
|
||||
|
||||
if (output & PNL_SEQ_USAGE) {
|
||||
/* set panel sequence */
|
||||
swPanelPowerSequence((output&PNL_SEQ_MASK)>>PNL_SEQ_OFFSET, 4);
|
||||
swPanelPowerSequence((output&PNL_SEQ_MASK) >> PNL_SEQ_OFFSET, 4);
|
||||
}
|
||||
|
||||
if (output & DAC_USAGE)
|
||||
setDAC((output & DAC_MASK)>>DAC_OFFSET);
|
||||
setDAC((output & DAC_MASK) >> DAC_OFFSET);
|
||||
|
||||
if (output & DPMS_USAGE)
|
||||
ddk750_setDPMS((output & DPMS_MASK) >> DPMS_OFFSET);
|
||||
|
||||
Reference in New Issue
Block a user