diff options
author | Luis R. Rodriguez <lrodriguez@atheros.com> | 2009-03-31 06:30:35 +0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-04-23 00:54:39 +0400 |
commit | 75c2148fa5330c6de741fc96e3308f57d846a6b4 (patch) | |
tree | 429f93d627f44e3de03c9b3af1e0a2b823dd70c2 /drivers/net/wireless/ath/ath5k/led.c | |
parent | 6b2b2ffbef7750e51bfa74e92229ecee10b59307 (diff) | |
download | linux-75c2148fa5330c6de741fc96e3308f57d846a6b4.tar.xz |
ath5k: sparse fix ath5k_led_on needs to be static
drivers/net/wireless/ath/ath5k/led.c:81:6: warning:
symbol 'ath5k_led_on' was not declared. Should it be static?
Signed-off-by: Luis R. Rodriguez <lrodriguez@atheros.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/ath/ath5k/led.c')
-rw-r--r-- | drivers/net/wireless/ath/ath5k/led.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/ath/ath5k/led.c b/drivers/net/wireless/ath/ath5k/led.c index 19555fb79c9b..006f7716168e 100644 --- a/drivers/net/wireless/ath/ath5k/led.c +++ b/drivers/net/wireless/ath/ath5k/led.c @@ -78,7 +78,7 @@ void ath5k_led_enable(struct ath5k_softc *sc) } } -void ath5k_led_on(struct ath5k_softc *sc) +static void ath5k_led_on(struct ath5k_softc *sc) { if (!test_bit(ATH_STAT_LEDSOFT, sc->status)) return; |