aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/mac80211.h
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2013-07-31 20:31:37 -0400
committerDavid S. Miller <davem@davemloft.net>2013-07-31 20:50:02 -0400
commit10dd9b7ce37e359066b9ab59592f81684360561a (patch)
treeb71542aa8b84927094d67db547250bebb9b99995 /include/net/mac80211.h
parentc1d8f8041cd0357643d5d051d1425a17b75e9d2c (diff)
cfg80211.h/mac80211.h: Remove extern from function prototypes
There are a mix of function prototypes with and without extern in the kernel sources. Standardize on not using extern for function prototypes. Function prototypes don't need to be written with extern. extern is assumed by the compiler. Its use is as unnecessary as using auto to declare automatic/local variables in a block. Reflow modified prototypes to 80 columns. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/mac80211.h')
-rw-r--r--include/net/mac80211.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
index 5b7a3dadadde..e5f02909f1ad 100644
--- a/include/net/mac80211.h
+++ b/include/net/mac80211.h
@@ -2877,14 +2877,14 @@ enum ieee80211_tpt_led_trigger_flags {
2877}; 2877};
2878 2878
2879#ifdef CONFIG_MAC80211_LEDS 2879#ifdef CONFIG_MAC80211_LEDS
2880extern char *__ieee80211_get_tx_led_name(struct ieee80211_hw *hw); 2880char *__ieee80211_get_tx_led_name(struct ieee80211_hw *hw);
2881extern char *__ieee80211_get_rx_led_name(struct ieee80211_hw *hw); 2881char *__ieee80211_get_rx_led_name(struct ieee80211_hw *hw);
2882extern char *__ieee80211_get_assoc_led_name(struct ieee80211_hw *hw); 2882char *__ieee80211_get_assoc_led_name(struct ieee80211_hw *hw);
2883extern char *__ieee80211_get_radio_led_name(struct ieee80211_hw *hw); 2883char *__ieee80211_get_radio_led_name(struct ieee80211_hw *hw);
2884extern char *__ieee80211_create_tpt_led_trigger( 2884char *__ieee80211_create_tpt_led_trigger(struct ieee80211_hw *hw,
2885 struct ieee80211_hw *hw, unsigned int flags, 2885 unsigned int flags,
2886 const struct ieee80211_tpt_blink *blink_table, 2886 const struct ieee80211_tpt_blink *blink_table,
2887 unsigned int blink_table_len); 2887 unsigned int blink_table_len);
2888#endif 2888#endif
2889/** 2889/**
2890 * ieee80211_get_tx_led_name - get name of TX LED 2890 * ieee80211_get_tx_led_name - get name of TX LED