Commit 36cbd685 authored by Payal Kshirsagar's avatar Payal Kshirsagar Committed by Greg Kroah-Hartman

staging: fbtft: fb_ssd1351.c: Replace bit shifting with BIT macro

Challenge suggested by coccinelle.
Prefer using BIT and replace bit shifting with the BIT(x) macro.
Signed-off-by: default avatarPayal Kshirsagar <payal.s.kshirsagar.98@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 46a49a52
...@@ -81,10 +81,10 @@ static int set_var(struct fbtft_par *par) ...@@ -81,10 +81,10 @@ static int set_var(struct fbtft_par *par)
switch (par->info->var.rotate) { switch (par->info->var.rotate) {
case 0: case 0:
write_reg(par, 0xA0, remap | 0x00 | 1 << 4); write_reg(par, 0xA0, remap | 0x00 | BIT(4));
break; break;
case 270: case 270:
write_reg(par, 0xA0, remap | 0x03 | 1 << 4); write_reg(par, 0xA0, remap | 0x03 | BIT(4));
break; break;
case 180: case 180:
write_reg(par, 0xA0, remap | 0x02); write_reg(par, 0xA0, remap | 0x02);
......
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