aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2010-05-20 04:38:11 -0400
committerJohn W. Linville <linville@tuxdriver.com>2010-06-02 16:13:29 -0400
commita0ea949358579c22019202c6876d61087a79361f (patch)
treed549731ee50e31f4fcc5a80bbcab7c8b3f3d283b
parentc5395b67437b47c4a4c0686d3db99be9327ef67e (diff)
drivers/net/wireless: Storage class should be before const qualifier
The C99 specification states in section 6.11.5: The placement of a storage-class specifier other than at the beginning of the declaration specifiers in a declaration is an obsolescent feature. Signed-off-by: Tobias Klauser <tklauser@distanz.ch> Acked-by: Reinette Chatre <reinette.chatre@intel.com> Acked-by: Luciano Coelho <luciano.coelho@nokia.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
-rw-r--r--drivers/net/wireless/iwlwifi/iwl-core.c4
-rw-r--r--drivers/net/wireless/wl12xx/wl1271_main.c6
2 files changed, 5 insertions, 5 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-core.c b/drivers/net/wireless/iwlwifi/iwl-core.c
index 2d538f4436a7..682342cf6394 100644
--- a/drivers/net/wireless/iwlwifi/iwl-core.c
+++ b/drivers/net/wireless/iwlwifi/iwl-core.c
@@ -2417,7 +2417,7 @@ void iwl_update_stats(struct iwl_priv *priv, bool is_tx, __le16 fc, u16 len)
2417EXPORT_SYMBOL(iwl_update_stats); 2417EXPORT_SYMBOL(iwl_update_stats);
2418#endif 2418#endif
2419 2419
2420const static char *get_csr_string(int cmd) 2420static const char *get_csr_string(int cmd)
2421{ 2421{
2422 switch (cmd) { 2422 switch (cmd) {
2423 IWL_CMD(CSR_HW_IF_CONFIG_REG); 2423 IWL_CMD(CSR_HW_IF_CONFIG_REG);
@@ -2488,7 +2488,7 @@ void iwl_dump_csr(struct iwl_priv *priv)
2488} 2488}
2489EXPORT_SYMBOL(iwl_dump_csr); 2489EXPORT_SYMBOL(iwl_dump_csr);
2490 2490
2491const static char *get_fh_string(int cmd) 2491static const char *get_fh_string(int cmd)
2492{ 2492{
2493 switch (cmd) { 2493 switch (cmd) {
2494 IWL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG); 2494 IWL_CMD(FH_RSCSR_CHNL0_STTS_WPTR_REG);
diff --git a/drivers/net/wireless/wl12xx/wl1271_main.c b/drivers/net/wireless/wl12xx/wl1271_main.c
index 5568f559a16b..032cb5de908c 100644
--- a/drivers/net/wireless/wl12xx/wl1271_main.c
+++ b/drivers/net/wireless/wl12xx/wl1271_main.c
@@ -1998,7 +1998,7 @@ static struct ieee80211_channel wl1271_channels[] = {
1998}; 1998};
1999 1999
2000/* mapping to indexes for wl1271_rates */ 2000/* mapping to indexes for wl1271_rates */
2001const static u8 wl1271_rate_to_idx_2ghz[] = { 2001static const u8 wl1271_rate_to_idx_2ghz[] = {
2002 /* MCS rates are used only with 11n */ 2002 /* MCS rates are used only with 11n */
2003 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */ 2003 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */
2004 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */ 2004 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */
@@ -2110,7 +2110,7 @@ static struct ieee80211_channel wl1271_channels_5ghz[] = {
2110}; 2110};
2111 2111
2112/* mapping to indexes for wl1271_rates_5ghz */ 2112/* mapping to indexes for wl1271_rates_5ghz */
2113const static u8 wl1271_rate_to_idx_5ghz[] = { 2113static const u8 wl1271_rate_to_idx_5ghz[] = {
2114 /* MCS rates are used only with 11n */ 2114 /* MCS rates are used only with 11n */
2115 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */ 2115 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS7 */
2116 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */ 2116 CONF_HW_RXTX_RATE_UNSUPPORTED, /* CONF_HW_RXTX_RATE_MCS6 */
@@ -2146,7 +2146,7 @@ static struct ieee80211_supported_band wl1271_band_5ghz = {
2146 .n_bitrates = ARRAY_SIZE(wl1271_rates_5ghz), 2146 .n_bitrates = ARRAY_SIZE(wl1271_rates_5ghz),
2147}; 2147};
2148 2148
2149const static u8 *wl1271_band_rate_to_idx[] = { 2149static const u8 *wl1271_band_rate_to_idx[] = {
2150 [IEEE80211_BAND_2GHZ] = wl1271_rate_to_idx_2ghz, 2150 [IEEE80211_BAND_2GHZ] = wl1271_rate_to_idx_2ghz,
2151 [IEEE80211_BAND_5GHZ] = wl1271_rate_to_idx_5ghz 2151 [IEEE80211_BAND_5GHZ] = wl1271_rate_to_idx_5ghz
2152}; 2152};