leds: ipaq-micro: fix sparse non static symbol warning
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Mon, 28 Jul 2014 13:15:24 +0000 (06:15 -0700)
committerBryan Wu <cooloney@gmail.com>
Tue, 29 Jul 2014 17:57:20 +0000 (10:57 -0700)
Fixes the following sparse warnings:

drivers/leds/leds-ipaq-micro.c:130:24: warning:
 symbol 'micro_leds_device_driver' was not declared. Should it be static?

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
drivers/leds/leds-ipaq-micro.c

index 3210a47..3776f51 100644 (file)
@@ -127,7 +127,7 @@ static int micro_leds_remove(struct platform_device *pdev)
        return 0;
 }
 
-struct platform_driver micro_leds_device_driver = {
+static struct platform_driver micro_leds_device_driver = {
        .driver = {
                .name    = "ipaq-micro-leds",
        },