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

Commit 87464cdb authored by Wei Yongjun's avatar Wei Yongjun Committed by Lee Jones
Browse files

backlight: ipaq_micro: Fix sparse non static symbol warning



Fixes the following sparse warnings:

drivers/video/backlight/ipaq_micro_bl.c:73:24: warning:
 symbol 'micro_backlight_device_driver' was not declared. Should it be static?

Signed-off-by: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: default avatarBryan Wu <cooloney@gmail.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 2188a988
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -70,7 +70,7 @@ static int micro_backlight_probe(struct platform_device *pdev)
	return 0;
}

struct platform_driver micro_backlight_device_driver = {
static struct platform_driver micro_backlight_device_driver = {
	.driver = {
		.name    = "ipaq-micro-backlight",
	},