staging: fbtft: add spaces around <<

add spaces around << to fix the checkpatch issue, spaces preferred
around that '<<'.

Signed-off-by: Gargi Sharma <gs051095@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Gargi Sharma 2016-09-16 04:08:12 +05:30 committed by Greg Kroah-Hartman
parent 007afa8bd3
commit e3f680ddae
1 changed files with 2 additions and 2 deletions

View File

@ -80,10 +80,10 @@ static int set_var(struct fbtft_par *par)
switch (par->info->var.rotate) {
case 0:
write_reg(par, 0xA0, remap | 0x00 | 1<<4);
write_reg(par, 0xA0, remap | 0x00 | 1 << 4);
break;
case 270:
write_reg(par, 0xA0, remap | 0x03 | 1<<4);
write_reg(par, 0xA0, remap | 0x03 | 1 << 4);
break;
case 180:
write_reg(par, 0xA0, remap | 0x02);