Commit e89044d7 authored by Eliad Peller's avatar Eliad Peller Committed by Johannes Berg

iwlwifi: fix some documentation typos

Fix some typos.
Signed-off-by: default avatarEliad Peller <eliad@wizery.com>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent f5e45f2d
...@@ -93,7 +93,7 @@ struct iwl_cfg; ...@@ -93,7 +93,7 @@ struct iwl_cfg;
* 1) The driver layer (iwl-drv.c) chooses the op_mode based on the * 1) The driver layer (iwl-drv.c) chooses the op_mode based on the
* capabilities advertized by the fw file (in TLV format). * capabilities advertized by the fw file (in TLV format).
* 2) The driver layer starts the op_mode (ops->start) * 2) The driver layer starts the op_mode (ops->start)
* 3) The op_mode registers registers mac80211 * 3) The op_mode registers mac80211
* 4) The op_mode is governed by mac80211 * 4) The op_mode is governed by mac80211
* 5) The driver layer stops the op_mode * 5) The driver layer stops the op_mode
*/ */
...@@ -112,7 +112,7 @@ struct iwl_cfg; ...@@ -112,7 +112,7 @@ struct iwl_cfg;
* @stop: stop the op_mode. Must free all the memory allocated. * @stop: stop the op_mode. Must free all the memory allocated.
* May sleep * May sleep
* @rx: Rx notification to the op_mode. rxb is the Rx buffer itself. Cmd is the * @rx: Rx notification to the op_mode. rxb is the Rx buffer itself. Cmd is the
* HCMD the this Rx responds to. * HCMD this Rx responds to.
* This callback may sleep, it is called from a threaded IRQ handler. * This callback may sleep, it is called from a threaded IRQ handler.
* @queue_full: notifies that a HW queue is full. * @queue_full: notifies that a HW queue is full.
* Must be atomic and called with BH disabled. * Must be atomic and called with BH disabled.
......
...@@ -180,7 +180,7 @@ struct iwl_rx_packet { ...@@ -180,7 +180,7 @@ struct iwl_rx_packet {
* enum CMD_MODE - how to send the host commands ? * enum CMD_MODE - how to send the host commands ?
* *
* @CMD_SYNC: The caller will be stalled until the fw responds to the command * @CMD_SYNC: The caller will be stalled until the fw responds to the command
* @CMD_ASYNC: Return right away and don't want for the response * @CMD_ASYNC: Return right away and don't wait for the response
* @CMD_WANT_SKB: valid only with CMD_SYNC. The caller needs the buffer of the * @CMD_WANT_SKB: valid only with CMD_SYNC. The caller needs the buffer of the
* response. The caller needs to call iwl_free_resp when done. * response. The caller needs to call iwl_free_resp when done.
*/ */
...@@ -218,7 +218,7 @@ struct iwl_device_cmd { ...@@ -218,7 +218,7 @@ struct iwl_device_cmd {
* *
* @IWL_HCMD_DFL_NOCOPY: By default, the command is copied to the host command's * @IWL_HCMD_DFL_NOCOPY: By default, the command is copied to the host command's
* ring. The transport layer doesn't map the command's buffer to DMA, but * ring. The transport layer doesn't map the command's buffer to DMA, but
* rather copies it to an previously allocated DMA buffer. This flag tells * rather copies it to a previously allocated DMA buffer. This flag tells
* the transport layer not to copy the command, but to map the existing * the transport layer not to copy the command, but to map the existing
* buffer (that is passed in) instead. This saves the memcpy and allows * buffer (that is passed in) instead. This saves the memcpy and allows
* commands that are bigger than the fixed buffer to be submitted. * commands that are bigger than the fixed buffer to be submitted.
...@@ -243,7 +243,7 @@ enum iwl_hcmd_dataflag { ...@@ -243,7 +243,7 @@ enum iwl_hcmd_dataflag {
* @handler_status: return value of the handler of the command * @handler_status: return value of the handler of the command
* (put in setup_rx_handlers) - valid for SYNC mode only * (put in setup_rx_handlers) - valid for SYNC mode only
* @flags: can be CMD_* * @flags: can be CMD_*
* @len: array of the lenths of the chunks in data * @len: array of the lengths of the chunks in data
* @dataflags: IWL_HCMD_DFL_* * @dataflags: IWL_HCMD_DFL_*
* @id: id of the host command * @id: id of the host command
*/ */
......
...@@ -503,7 +503,7 @@ static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw, ...@@ -503,7 +503,7 @@ static int iwl_mvm_mac_add_interface(struct ieee80211_hw *hw,
mutex_lock(&mvm->mutex); mutex_lock(&mvm->mutex);
/* Allocate resources for the MAC context, and add it the the fw */ /* Allocate resources for the MAC context, and add it to the fw */
ret = iwl_mvm_mac_ctxt_init(mvm, vif); ret = iwl_mvm_mac_ctxt_init(mvm, vif);
if (ret) if (ret)
goto out_unlock; goto out_unlock;
......
...@@ -173,7 +173,7 @@ static void iwl_mvm_set_tx_cmd_rate(struct iwl_mvm *mvm, ...@@ -173,7 +173,7 @@ static void iwl_mvm_set_tx_cmd_rate(struct iwl_mvm *mvm,
} }
/* /*
* for data packets, rate info comes from the table inside he fw. This * for data packets, rate info comes from the table inside the fw. This
* table is controlled by LINK_QUALITY commands * table is controlled by LINK_QUALITY commands
*/ */
......
...@@ -1153,10 +1153,10 @@ void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id) ...@@ -1153,10 +1153,10 @@ void iwl_trans_pcie_txq_disable(struct iwl_trans *trans, int txq_id)
/* /*
* iwl_pcie_enqueue_hcmd - enqueue a uCode command * iwl_pcie_enqueue_hcmd - enqueue a uCode command
* @priv: device private data point * @priv: device private data point
* @cmd: a point to the ucode command structure * @cmd: a pointer to the ucode command structure
* *
* The function returns < 0 values to indicate the operation is * The function returns < 0 values to indicate the operation
* failed. On success, it turns the index (> 0) of command in the * failed. On success, it returns the index (>= 0) of command in the
* command queue. * command queue.
*/ */
static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans, static int iwl_pcie_enqueue_hcmd(struct iwl_trans *trans,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment