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

Commit e661c897 authored by Wei Yongjun's avatar Wei Yongjun Committed by Bryan Wu
Browse files

leds: ipaq-micro: fix sparse non static symbol warning



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: default avatarWei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: default avatarBryan Wu <cooloney@gmail.com>
parent 4da498fc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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",
	},