]> Git Repo - linux.git/commitdiff
leds: ipaq-micro: fix sparse non static symbol warning
authorWei Yongjun <[email protected]>
Mon, 28 Jul 2014 13:15:24 +0000 (06:15 -0700)
committerBryan Wu <[email protected]>
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 <[email protected]>
Signed-off-by: Bryan Wu <[email protected]>
drivers/leds/leds-ipaq-micro.c

index 3210a47f0812f8d994a0c3c34e38f4f937f7d13c..3776f516cd88f80541affad80ce4dcb25963152c 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",
        },
This page took 0.062653 seconds and 4 git commands to generate.