Commit 153fe946 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Greg Kroah-Hartman

staging: fbtft: Do not use binary constants

Gcc < 4.3 doesn't understand binary constants (0b*):

drivers/staging/fbtft/fbtft-sysfs.c:156:19: error: invalid suffix "b111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:159:3: error: invalid suffix "b1111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:159:11: error: invalid suffix "b1111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:159:19: error: invalid suffix "b11111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:159:28: error: invalid suffix "b1111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:159:36: error: invalid suffix "b1111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:159:44: error: invalid suffix "b1111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:159:52: error: invalid suffix "b11111" on integer constant
drivers/staging/fbtft/fb_hx8340bn.c:160:3: error: invalid suffix "b111" on integer constant
...

Hence use hexadecimal constants (0x*) instead.
Signed-off-by: default avatarGeert Uytterhoeven <geert@linux-m68k.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent dc5f2c5f
...@@ -149,10 +149,10 @@ static int set_var(struct fbtft_par *par) ...@@ -149,10 +149,10 @@ static int set_var(struct fbtft_par *par)
static int set_gamma(struct fbtft_par *par, unsigned long *curves) static int set_gamma(struct fbtft_par *par, unsigned long *curves)
{ {
unsigned long mask[] = { unsigned long mask[] = {
0b1111, 0b1111, 0b11111, 0b1111, 0b1111, 0b1111, 0b11111, 0x0f, 0x0f, 0x1f, 0x0f, 0x0f, 0x0f, 0x1f, 0x07, 0x07, 0x07,
0b111, 0b111, 0b111, 0b111, 0b111, 0b111, 0b11, 0b11, 0x07, 0x07, 0x07, 0x03, 0x03, 0x0f, 0x0f, 0x1f, 0x0f, 0x0f,
0b1111, 0b1111, 0b11111, 0b1111, 0b1111, 0b1111, 0b11111, 0x0f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x00, 0x00,
0b111, 0b111, 0b111, 0b111, 0b111, 0b111, 0b0, 0b0 }; };
int i, j; int i, j;
/* apply mask */ /* apply mask */
......
...@@ -115,10 +115,9 @@ static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye) ...@@ -115,10 +115,9 @@ static void set_addr_win(struct fbtft_par *par, int xs, int ys, int xe, int ye)
static int set_gamma(struct fbtft_par *par, unsigned long *curves) static int set_gamma(struct fbtft_par *par, unsigned long *curves)
{ {
unsigned long mask[] = { unsigned long mask[] = {
0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x7f, 0x7f, 0x1f, 0x1f,
0b1111111, 0b1111111, 0x1f, 0x1f, 0x1f, 0x0f,
0b11111, 0b11111, 0b11111, 0b11111, 0b11111, };
0b1111};
int i, j; int i, j;
int acc = 0; int acc = 0;
......
...@@ -179,10 +179,9 @@ static int set_var(struct fbtft_par *par) ...@@ -179,10 +179,9 @@ static int set_var(struct fbtft_par *par)
static int set_gamma(struct fbtft_par *par, unsigned long *curves) static int set_gamma(struct fbtft_par *par, unsigned long *curves)
{ {
unsigned long mask[] = { unsigned long mask[] = {
0b11111, 0b11111, 0b111, 0b111, 0b111, 0x1f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
0b111, 0b111, 0b111, 0b111, 0b111, 0x1f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
0b11111, 0b11111, 0b111, 0b111, 0b111, };
0b111, 0b111, 0b111, 0b111, 0b111 };
int i, j; int i, j;
fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__); fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__);
......
...@@ -41,22 +41,22 @@ static unsigned bt = 6; /* VGL=Vci*4 , VGH=Vci*4 */ ...@@ -41,22 +41,22 @@ static unsigned bt = 6; /* VGL=Vci*4 , VGH=Vci*4 */
module_param(bt, uint, 0); module_param(bt, uint, 0);
MODULE_PARM_DESC(bt, "Sets the factor used in the step-up circuits"); MODULE_PARM_DESC(bt, "Sets the factor used in the step-up circuits");
static unsigned vc = 0b011; /* Vci1=Vci*0.80 */ static unsigned vc = 0x03; /* Vci1=Vci*0.80 */
module_param(vc, uint, 0); module_param(vc, uint, 0);
MODULE_PARM_DESC(vc, MODULE_PARM_DESC(vc,
"Sets the ratio factor of Vci to generate the reference voltages Vci1"); "Sets the ratio factor of Vci to generate the reference voltages Vci1");
static unsigned vrh = 0b1101; /* VREG1OUT=Vci*1.85 */ static unsigned vrh = 0x0d; /* VREG1OUT=Vci*1.85 */
module_param(vrh, uint, 0); module_param(vrh, uint, 0);
MODULE_PARM_DESC(vrh, MODULE_PARM_DESC(vrh,
"Set the amplifying rate (1.6 ~ 1.9) of Vci applied to output the VREG1OUT"); "Set the amplifying rate (1.6 ~ 1.9) of Vci applied to output the VREG1OUT");
static unsigned vdv = 0b10010; /* VCOMH amplitude=VREG1OUT*0.98 */ static unsigned vdv = 0x12; /* VCOMH amplitude=VREG1OUT*0.98 */
module_param(vdv, uint, 0); module_param(vdv, uint, 0);
MODULE_PARM_DESC(vdv, MODULE_PARM_DESC(vdv,
"Select the factor of VREG1OUT to set the amplitude of Vcom"); "Select the factor of VREG1OUT to set the amplitude of Vcom");
static unsigned vcm = 0b001010; /* VCOMH=VREG1OUT*0.735 */ static unsigned vcm = 0x0a; /* VCOMH=VREG1OUT*0.735 */
module_param(vcm, uint, 0); module_param(vcm, uint, 0);
MODULE_PARM_DESC(vcm, "Set the internal VcomH voltage"); MODULE_PARM_DESC(vcm, "Set the internal VcomH voltage");
...@@ -108,11 +108,11 @@ static int init_display(struct fbtft_par *par) ...@@ -108,11 +108,11 @@ static int init_display(struct fbtft_par *par)
if (par->gpio.cs != -1) if (par->gpio.cs != -1)
gpio_set_value(par->gpio.cs, 0); /* Activate chip */ gpio_set_value(par->gpio.cs, 0); /* Activate chip */
bt &= 0b111; bt &= 0x07;
vc &= 0b111; vc &= 0x07;
vrh &= 0b1111; vrh &= 0x0f;
vdv &= 0b11111; vdv &= 0x1f;
vcm &= 0b111111; vcm &= 0x3f;
/* Initialization sequence from ILI9325 Application Notes */ /* Initialization sequence from ILI9325 Application Notes */
...@@ -137,7 +137,7 @@ static int init_display(struct fbtft_par *par) ...@@ -137,7 +137,7 @@ static int init_display(struct fbtft_par *par)
write_reg(par, 0x0013, 0x0000); /* VDV[4:0] for VCOM amplitude */ write_reg(par, 0x0013, 0x0000); /* VDV[4:0] for VCOM amplitude */
mdelay(200); /* Dis-charge capacitor power voltage */ mdelay(200); /* Dis-charge capacitor power voltage */
write_reg(par, 0x0010, /* SAP, BT[3:0], AP, DSTB, SLP, STB */ write_reg(par, 0x0010, /* SAP, BT[3:0], AP, DSTB, SLP, STB */
(1 << 12) | (bt << 8) | (1 << 7) | (0b001 << 4)); (1 << 12) | (bt << 8) | (1 << 7) | (0x01 << 4));
write_reg(par, 0x0011, 0x220 | vc); /* DC1[2:0], DC0[2:0], VC[2:0] */ write_reg(par, 0x0011, 0x220 | vc); /* DC1[2:0], DC0[2:0], VC[2:0] */
mdelay(50); /* Delay 50ms */ mdelay(50); /* Delay 50ms */
write_reg(par, 0x0012, vrh); /* Internal reference voltage= Vci; */ write_reg(par, 0x0012, vrh); /* Internal reference voltage= Vci; */
...@@ -233,10 +233,9 @@ static int set_var(struct fbtft_par *par) ...@@ -233,10 +233,9 @@ static int set_var(struct fbtft_par *par)
static int set_gamma(struct fbtft_par *par, unsigned long *curves) static int set_gamma(struct fbtft_par *par, unsigned long *curves)
{ {
unsigned long mask[] = { unsigned long mask[] = {
0b11111, 0b11111, 0b111, 0b111, 0b111, 0x1f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
0b111, 0b111, 0b111, 0b111, 0b111, 0x1f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
0b11111, 0b11111, 0b111, 0b111, 0b111, };
0b111, 0b111, 0b111, 0b111, 0b111 };
int i, j; int i, j;
fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__); fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__);
......
...@@ -143,12 +143,10 @@ static int set_var(struct fbtft_par *par) ...@@ -143,12 +143,10 @@ static int set_var(struct fbtft_par *par)
static int set_gamma(struct fbtft_par *par, unsigned long *curves) static int set_gamma(struct fbtft_par *par, unsigned long *curves)
{ {
unsigned long mask[] = { unsigned long mask[] = {
0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f,
0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0x3f, 0x3f, 0x1f, 0x1f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f,
0b11111, 0b11111, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x3f, 0x1f, 0x1f,
0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0b111111, };
0b111111, 0b111111, 0b111111, 0b111111, 0b111111, 0b111111,
0b11111, 0b11111 };
int i, j; int i, j;
fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__); fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__);
......
...@@ -126,16 +126,16 @@ static int set_var(struct fbtft_par *par) ...@@ -126,16 +126,16 @@ 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, 0x11, reg11 | 0b110000); write_reg(par, 0x11, reg11 | 0x30);
break; break;
case 270: case 270:
write_reg(par, 0x11, reg11 | 0b101000); write_reg(par, 0x11, reg11 | 0x28);
break; break;
case 180: case 180:
write_reg(par, 0x11, reg11 | 0b000000); write_reg(par, 0x11, reg11 | 0x00);
break; break;
case 90: case 90:
write_reg(par, 0x11, reg11 | 0b011000); write_reg(par, 0x11, reg11 | 0x18);
break; break;
} }
...@@ -151,10 +151,9 @@ static int set_var(struct fbtft_par *par) ...@@ -151,10 +151,9 @@ static int set_var(struct fbtft_par *par)
static int set_gamma(struct fbtft_par *par, unsigned long *curves) static int set_gamma(struct fbtft_par *par, unsigned long *curves)
{ {
unsigned long mask[] = { unsigned long mask[] = {
0b11111, 0b11111, 0b111, 0b111, 0b111, 0x1f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
0b111, 0b111, 0b111, 0b111, 0b111, 0x1f, 0x1f, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07, 0x07,
0b11111, 0b11111, 0b111, 0b111, 0b111, };
0b111, 0b111, 0b111, 0b111, 0b111 };
int i, j; int i, j;
fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__); fbtft_par_dbg(DEBUG_INIT_DISPLAY, par, "%s()\n", __func__);
......
...@@ -87,16 +87,16 @@ static int set_var(struct fbtft_par *par) ...@@ -87,16 +87,16 @@ 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 | 0b00 | 1<<4); write_reg(par, 0xA0, remap | 0x00 | 1<<4);
break; break;
case 270: case 270:
write_reg(par, 0xA0, remap | 0b11 | 1<<4); write_reg(par, 0xA0, remap | 0x03 | 1<<4);
break; break;
case 180: case 180:
write_reg(par, 0xA0, remap | 0b10); write_reg(par, 0xA0, remap | 0x02);
break; break;
case 90: case 90:
write_reg(par, 0xA0, remap | 0b01); write_reg(par, 0xA0, remap | 0x01);
break; break;
} }
......
...@@ -155,7 +155,7 @@ static int set_gamma(struct fbtft_par *par, unsigned long *curves) ...@@ -155,7 +155,7 @@ static int set_gamma(struct fbtft_par *par, unsigned long *curves)
/* apply mask */ /* apply mask */
for (i = 0; i < par->gamma.num_curves; i++) for (i = 0; i < par->gamma.num_curves; i++)
for (j = 0; j < par->gamma.num_values; j++) for (j = 0; j < par->gamma.num_values; j++)
CURVE(i, j) &= 0b111111; CURVE(i, j) &= 0x3f;
for (i = 0; i < par->gamma.num_curves; i++) for (i = 0; i < par->gamma.num_curves; i++)
write_reg(par, 0xE0 + i, write_reg(par, 0xE0 + i,
......
...@@ -152,7 +152,7 @@ static struct device_attribute gamma_device_attrs[] = { ...@@ -152,7 +152,7 @@ static struct device_attribute gamma_device_attrs[] = {
void fbtft_expand_debug_value(unsigned long *debug) void fbtft_expand_debug_value(unsigned long *debug)
{ {
switch (*debug & 0b111) { switch (*debug & 0x7) {
case 1: case 1:
*debug |= DEBUG_LEVEL_1; *debug |= DEBUG_LEVEL_1;
break; break;
......
...@@ -489,7 +489,7 @@ static struct fbtft_device_display displays[] = { ...@@ -489,7 +489,7 @@ static struct fbtft_device_display displays[] = {
.buswidth = 8, .buswidth = 8,
.backlight = 1, .backlight = 1,
}, },
.startbyte = 0b01110000, .startbyte = 0x70,
.bgr = true, .bgr = true,
.gpios = (const struct fbtft_gpio []) { .gpios = (const struct fbtft_gpio []) {
{ "reset", 25 }, { "reset", 25 },
...@@ -510,7 +510,7 @@ static struct fbtft_device_display displays[] = { ...@@ -510,7 +510,7 @@ static struct fbtft_device_display displays[] = {
.backlight = 1, .backlight = 1,
.init_sequence = hy28b_init_sequence, .init_sequence = hy28b_init_sequence,
}, },
.startbyte = 0b01110000, .startbyte = 0x70,
.bgr = true, .bgr = true,
.fps = 50, .fps = 50,
.gpios = (const struct fbtft_gpio []) { .gpios = (const struct fbtft_gpio []) {
...@@ -623,7 +623,7 @@ static struct fbtft_device_display displays[] = { ...@@ -623,7 +623,7 @@ static struct fbtft_device_display displays[] = {
.buswidth = 8, .buswidth = 8,
.backlight = 1, .backlight = 1,
}, },
.startbyte = 0b01110000, .startbyte = 0x70,
.bgr = true, .bgr = true,
.gpios = (const struct fbtft_gpio []) { .gpios = (const struct fbtft_gpio []) {
{ "reset", 25 }, { "reset", 25 },
......
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