aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power/ipaq_micro_battery.c
diff options
context:
space:
mode:
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>2014-07-28 21:14:21 +0800
committerSebastian Reichel <sre@kernel.org>2014-07-28 15:36:29 +0200
commit5e37195f30cc31e6a1052cbc282254e127c1b8c7 (patch)
tree660816392d485cd9039e511894b27f09a240b273 /drivers/power/ipaq_micro_battery.c
parentpower: add driver for battery reading on iPaq h3xxx (diff)
downloadlinux-dev-5e37195f30cc31e6a1052cbc282254e127c1b8c7.tar.xz
linux-dev-5e37195f30cc31e6a1052cbc282254e127c1b8c7.zip
ipaq_micro_battery: fix sparse non static symbol warning
Fixes the following sparse warnings: drivers/power/ipaq_micro_battery.c:278:24: warning: symbol 'micro_batt_device_driver' was not declared. Should it be static? Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn> Signed-off-by: Sebastian Reichel <sre@kernel.org>
Diffstat (limited to 'drivers/power/ipaq_micro_battery.c')
-rw-r--r--drivers/power/ipaq_micro_battery.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/ipaq_micro_battery.c b/drivers/power/ipaq_micro_battery.c
index 54632eabf420..9d694605cdb7 100644
--- a/drivers/power/ipaq_micro_battery.c
+++ b/drivers/power/ipaq_micro_battery.c
@@ -275,7 +275,7 @@ static const struct dev_pm_ops micro_batt_dev_pm_ops = {
SET_SYSTEM_SLEEP_PM_OPS(micro_batt_suspend, micro_batt_resume)
};
-struct platform_driver micro_batt_device_driver = {
+static struct platform_driver micro_batt_device_driver = {
.driver = {
.name = "ipaq-micro-battery",
.pm = &micro_batt_dev_pm_ops,