mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-17 09:43:59 +08:00
staging: fbtft: fb_agm1264k-fl.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: Payal Kshirsagar <payal.s.kshirsagar.98@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a3b3e835d6
commit
46a49a52d1
@ -383,7 +383,7 @@ static int write_vmem(struct fbtft_par *par, size_t offset, size_t len)
|
||||
/* select right side (sc1)
|
||||
* set addr
|
||||
*/
|
||||
write_reg(par, 0x01, 1 << 6);
|
||||
write_reg(par, 0x01, BIT(6));
|
||||
write_reg(par, 0x01, (0x17 << 3) | (u8)y);
|
||||
|
||||
/* write bitmap */
|
||||
|
Loading…
Reference in New Issue
Block a user