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