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: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Acked-by: Bryan Wu <cooloney@gmail.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
This commit is contained in:
Wei Yongjun 2014-07-30 07:20:30 +08:00 committed by Lee Jones
parent 2188a988bb
commit 87464cdba2
1 changed files with 1 additions and 1 deletions

View File

@ -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",
},