diff options
author | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-03-13 20:43:11 -0400 |
---|---|---|
committer | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-03-26 12:41:14 -0400 |
commit | 64eb9b02bfbbc2a53b6092cc12c1f42cc3261dbc (patch) | |
tree | 68708ed82a38cff384fb61de9d5615c254a8af19 /drivers/power/abx500_chargalg.c | |
parent | 0fff22ee792aee95d6945f4ed1b10aeaea806bc8 (diff) |
ab8500: Turn unneeded global symbols into local ones
The patch fixes the following sparse warning:
drivers/power/ab8500_charger.c:1619:6: warning: symbol 'ab8500_charger_detect_usb_type_work' was not declared. Should it be static?
drivers/power/abx500_chargalg.c:1709:24: warning: symbol 'abx500_chargalg_sysfs_ops' was not declared. Should it be static?
drivers/power/ab8500_fg.c:2328:24: warning: symbol 'ab8500_fg_sysfs_ops' was not declared. Should it be static?
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Diffstat (limited to 'drivers/power/abx500_chargalg.c')
-rw-r--r-- | drivers/power/abx500_chargalg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/abx500_chargalg.c b/drivers/power/abx500_chargalg.c index fbb6a1fe97e4..804b88c760d6 100644 --- a/drivers/power/abx500_chargalg.c +++ b/drivers/power/abx500_chargalg.c | |||
@@ -1706,7 +1706,7 @@ static struct attribute *abx500_chargalg_chg[] = { | |||
1706 | NULL | 1706 | NULL |
1707 | }; | 1707 | }; |
1708 | 1708 | ||
1709 | const struct sysfs_ops abx500_chargalg_sysfs_ops = { | 1709 | static const struct sysfs_ops abx500_chargalg_sysfs_ops = { |
1710 | .store = abx500_chargalg_sysfs_charger, | 1710 | .store = abx500_chargalg_sysfs_charger, |
1711 | }; | 1711 | }; |
1712 | 1712 | ||