Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 86b15d5d authored by Jingoo Han's avatar Jingoo Han Committed by Linus Torvalds
Browse files

backlight: ld9040: Staticize local variable gamma_table



Fix the following sparse warnings:

  drivers/video/backlight/ld9040_gamma.h:172:3: warning: symbol 'gamma_table' was not declared. Should it be static?

Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 4c4d2a3a
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -169,7 +169,9 @@ static const unsigned int ld9040_22_50[] = {

struct ld9040_gamma {
	unsigned int *gamma_22_table[MAX_GAMMA_LEVEL];
} gamma_table = {
};

static struct ld9040_gamma gamma_table = {
	.gamma_22_table[0] = (unsigned int *)&ld9040_22_50,
	.gamma_22_table[1] = (unsigned int *)&ld9040_22_70,
	.gamma_22_table[2] = (unsigned int *)&ld9040_22_80,