staging: fbtft: Remove the use of CamelCase
Rename the macro defining constant ROWxCOL into ROW_X_COL to remove checkpatch check concerning use of CamelCase and to achieve better readability. CHECK: Avoid CamelCase: <ROWxCOL> Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ead3c5ce50
commit
61abd03a3d
|
@ -64,13 +64,13 @@ static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
|
|||
|
||||
#define HFLIP 0x01
|
||||
#define VFLIP 0x02
|
||||
#define ROWxCOL 0x20
|
||||
#define ROW_X_COL 0x20
|
||||
static int set_var(struct fbtft_par *par)
|
||||
{
|
||||
switch (par->info->var.rotate) {
|
||||
case 270:
|
||||
write_reg(par, MIPI_DCS_SET_ADDRESS_MODE,
|
||||
ROWxCOL | HFLIP | VFLIP | (par->bgr << 3));
|
||||
ROW_X_COL | HFLIP | VFLIP | (par->bgr << 3));
|
||||
break;
|
||||
case 180:
|
||||
write_reg(par, MIPI_DCS_SET_ADDRESS_MODE,
|
||||
|
@ -78,7 +78,7 @@ static int set_var(struct fbtft_par *par)
|
|||
break;
|
||||
case 90:
|
||||
write_reg(par, MIPI_DCS_SET_ADDRESS_MODE,
|
||||
ROWxCOL | (par->bgr << 3));
|
||||
ROW_X_COL | (par->bgr << 3));
|
||||
break;
|
||||
default:
|
||||
write_reg(par, MIPI_DCS_SET_ADDRESS_MODE,
|
||||
|
|
Loading…
Reference in New Issue