diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/iwl-hcmd.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/iwl-hcmd.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/drivers/net/wireless/iwlwifi/iwl-hcmd.c b/drivers/net/wireless/iwlwifi/iwl-hcmd.c index c373b53babea..02499f684683 100644 --- a/drivers/net/wireless/iwlwifi/iwl-hcmd.c +++ b/drivers/net/wireless/iwlwifi/iwl-hcmd.c | |||
@@ -108,12 +108,12 @@ const char *get_cmd_string(u8 cmd) | |||
108 | IWL_CMD(REPLY_WIPAN_WEPKEY); | 108 | IWL_CMD(REPLY_WIPAN_WEPKEY); |
109 | IWL_CMD(REPLY_WIPAN_P2P_CHANNEL_SWITCH); | 109 | IWL_CMD(REPLY_WIPAN_P2P_CHANNEL_SWITCH); |
110 | IWL_CMD(REPLY_WIPAN_NOA_NOTIFICATION); | 110 | IWL_CMD(REPLY_WIPAN_NOA_NOTIFICATION); |
111 | IWL_CMD(REPLY_WIPAN_DEACTIVATION_COMPLETE); | ||
111 | default: | 112 | default: |
112 | return "UNKNOWN"; | 113 | return "UNKNOWN"; |
113 | 114 | ||
114 | } | 115 | } |
115 | } | 116 | } |
116 | EXPORT_SYMBOL(get_cmd_string); | ||
117 | 117 | ||
118 | #define HOST_COMPLETE_TIMEOUT (HZ / 2) | 118 | #define HOST_COMPLETE_TIMEOUT (HZ / 2) |
119 | 119 | ||
@@ -252,7 +252,6 @@ out: | |||
252 | mutex_unlock(&priv->sync_cmd_mutex); | 252 | mutex_unlock(&priv->sync_cmd_mutex); |
253 | return ret; | 253 | return ret; |
254 | } | 254 | } |
255 | EXPORT_SYMBOL(iwl_send_cmd_sync); | ||
256 | 255 | ||
257 | int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd) | 256 | int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd) |
258 | { | 257 | { |
@@ -261,7 +260,6 @@ int iwl_send_cmd(struct iwl_priv *priv, struct iwl_host_cmd *cmd) | |||
261 | 260 | ||
262 | return iwl_send_cmd_sync(priv, cmd); | 261 | return iwl_send_cmd_sync(priv, cmd); |
263 | } | 262 | } |
264 | EXPORT_SYMBOL(iwl_send_cmd); | ||
265 | 263 | ||
266 | int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data) | 264 | int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data) |
267 | { | 265 | { |
@@ -273,7 +271,6 @@ int iwl_send_cmd_pdu(struct iwl_priv *priv, u8 id, u16 len, const void *data) | |||
273 | 271 | ||
274 | return iwl_send_cmd_sync(priv, &cmd); | 272 | return iwl_send_cmd_sync(priv, &cmd); |
275 | } | 273 | } |
276 | EXPORT_SYMBOL(iwl_send_cmd_pdu); | ||
277 | 274 | ||
278 | int iwl_send_cmd_pdu_async(struct iwl_priv *priv, | 275 | int iwl_send_cmd_pdu_async(struct iwl_priv *priv, |
279 | u8 id, u16 len, const void *data, | 276 | u8 id, u16 len, const void *data, |
@@ -292,4 +289,3 @@ int iwl_send_cmd_pdu_async(struct iwl_priv *priv, | |||
292 | 289 | ||
293 | return iwl_send_cmd_async(priv, &cmd); | 290 | return iwl_send_cmd_async(priv, &cmd); |
294 | } | 291 | } |
295 | EXPORT_SYMBOL(iwl_send_cmd_pdu_async); | ||