Commit d4a06464 authored by Colin Ian King's avatar Colin Ian King Committed by Mauro Carvalho Chehab

media: staging: fbtft: make const array gamma_par_mask static

Don't populate array gamma_par_mask on the stack but instead make it
static.  Makes the object code smaller by 148 bytes:

Before:
   text	   data	    bss	    dec	    hex	filename
   2993	   1104	      0	   4097	   1001	drivers/staging/fbtft/fb_st7789v.o

After:
   text	   data	    bss	    dec	    hex	filename
   2757	   1192	      0	   3949	    f6d	drivers/staging/fbtft/fb_st7789v.o
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent 3802c1bc
...@@ -1315,7 +1315,7 @@ static int cit_set_sharpness(struct gspca_dev *gspca_dev, s32 val) ...@@ -1315,7 +1315,7 @@ static int cit_set_sharpness(struct gspca_dev *gspca_dev, s32 val)
break; break;
case CIT_MODEL1: { case CIT_MODEL1: {
int i; int i;
const unsigned short sa[] = { static const unsigned short sa[] = {
0x11, 0x13, 0x16, 0x18, 0x1a, 0x8, 0x0a }; 0x11, 0x13, 0x16, 0x18, 0x1a, 0x8, 0x0a };
for (i = 0; i < cit_model1_ntries; i++) for (i = 0; i < cit_model1_ntries; i++)
......
...@@ -189,7 +189,7 @@ static int set_gamma(struct fbtft_par *par, u32 *curves) ...@@ -189,7 +189,7 @@ static int set_gamma(struct fbtft_par *par, u32 *curves)
* The masks are the same for both positive and negative voltage * The masks are the same for both positive and negative voltage
* gamma curves. * gamma curves.
*/ */
const u8 gamma_par_mask[] = { static const u8 gamma_par_mask[] = {
0xFF, /* V63[3:0], V0[3:0]*/ 0xFF, /* V63[3:0], V0[3:0]*/
0x3F, /* V1[5:0] */ 0x3F, /* V1[5:0] */
0x3F, /* V2[5:0] */ 0x3F, /* V2[5:0] */
......
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