iwlwifi: remove unnecessary parameter in scan function
small change to remove unnecessary "ret" parameter since it not being used. Signed-off-by: Wey-Yi Guy <wey-yi.w.guy@intel.com> Signed-off-by: Reinette Chatre <reinette.chatre@intel.com>
This commit is contained in:
parent
9856b7fa36
commit
13115ba76b
1 changed files with 3 additions and 5 deletions
|
@ -675,7 +675,6 @@ static void iwl_bg_request_scan(struct work_struct *data)
|
||||||
};
|
};
|
||||||
struct iwl_scan_cmd *scan;
|
struct iwl_scan_cmd *scan;
|
||||||
struct ieee80211_conf *conf = NULL;
|
struct ieee80211_conf *conf = NULL;
|
||||||
int ret = 0;
|
|
||||||
u32 rate_flags = 0;
|
u32 rate_flags = 0;
|
||||||
u16 cmd_len;
|
u16 cmd_len;
|
||||||
u16 rx_chain = 0;
|
u16 rx_chain = 0;
|
||||||
|
@ -708,7 +707,6 @@ static void iwl_bg_request_scan(struct work_struct *data)
|
||||||
if (test_bit(STATUS_SCAN_HW, &priv->status)) {
|
if (test_bit(STATUS_SCAN_HW, &priv->status)) {
|
||||||
IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests in parallel. "
|
IWL_DEBUG_INFO(priv, "Multiple concurrent scan requests in parallel. "
|
||||||
"Ignoring second request.\n");
|
"Ignoring second request.\n");
|
||||||
ret = -EIO;
|
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -741,7 +739,8 @@ static void iwl_bg_request_scan(struct work_struct *data)
|
||||||
priv->scan = kmalloc(sizeof(struct iwl_scan_cmd) +
|
priv->scan = kmalloc(sizeof(struct iwl_scan_cmd) +
|
||||||
IWL_MAX_SCAN_SIZE, GFP_KERNEL);
|
IWL_MAX_SCAN_SIZE, GFP_KERNEL);
|
||||||
if (!priv->scan) {
|
if (!priv->scan) {
|
||||||
ret = -ENOMEM;
|
IWL_DEBUG_SCAN(priv,
|
||||||
|
"fail to allocate memory for scan\n");
|
||||||
goto done;
|
goto done;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -908,8 +907,7 @@ static void iwl_bg_request_scan(struct work_struct *data)
|
||||||
scan->len = cpu_to_le16(cmd.len);
|
scan->len = cpu_to_le16(cmd.len);
|
||||||
|
|
||||||
set_bit(STATUS_SCAN_HW, &priv->status);
|
set_bit(STATUS_SCAN_HW, &priv->status);
|
||||||
ret = iwl_send_cmd_sync(priv, &cmd);
|
if (iwl_send_cmd_sync(priv, &cmd))
|
||||||
if (ret)
|
|
||||||
goto done;
|
goto done;
|
||||||
|
|
||||||
queue_delayed_work(priv->workqueue, &priv->scan_check,
|
queue_delayed_work(priv->workqueue, &priv->scan_check,
|
||||||
|
|
Loading…
Add table
Reference in a new issue