From: Jingoo Han Date: Tue, 12 Nov 2013 23:09:03 +0000 (-0800) Subject: backlight: lp8788: staticize 'default_bl_config' X-Git-Tag: Ubuntu-5.10.0-12.13~18008^2~151 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=1f299997b460d08356006945345a8962f7ecd719;p=mirror_ubuntu-hirsute-kernel.git backlight: lp8788: staticize 'default_bl_config' Fix the following sparse warning: drivers/video/backlight/lp8788_bl.c:55:25: warning: symbol 'default_bl_config' was not declared. Should it be static? Signed-off-by: Jingoo Han Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/video/backlight/lp8788_bl.c b/drivers/video/backlight/lp8788_bl.c index 980855ec9bb1..e49905d495dc 100644 --- a/drivers/video/backlight/lp8788_bl.c +++ b/drivers/video/backlight/lp8788_bl.c @@ -52,7 +52,7 @@ struct lp8788_bl { struct pwm_device *pwm; }; -struct lp8788_bl_config default_bl_config = { +static struct lp8788_bl_config default_bl_config = { .bl_mode = LP8788_BL_REGISTER_ONLY, .dim_mode = LP8788_DIM_EXPONENTIAL, .full_scale = LP8788_FULLSCALE_1900uA,