iwlegacy: get rid of ctx->rxon_cmd
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
This commit is contained in:
parent
c8b03958d4
commit
6122d18236
4 changed files with 4 additions and 6 deletions
|
@ -3619,7 +3619,6 @@ il3945_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
|
||||
il->ctx.ctxid = 0;
|
||||
|
||||
il->ctx.rxon_cmd = C_RXON;
|
||||
il->ctx.rxon_timing_cmd = C_RXON_TIMING;
|
||||
il->ctx.rxon_assoc_cmd = C_RXON_ASSOC;
|
||||
il->ctx.qos_cmd = C_QOS_PARAM;
|
||||
|
|
|
@ -6135,7 +6135,6 @@ il4965_pci_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
|||
|
||||
il->ctx.always_active = true;
|
||||
il->ctx.is_active = true;
|
||||
il->ctx.rxon_cmd = C_RXON;
|
||||
il->ctx.rxon_timing_cmd = C_RXON_TIMING;
|
||||
il->ctx.rxon_assoc_cmd = C_RXON_ASSOC;
|
||||
il->ctx.qos_cmd = C_QOS_PARAM;
|
||||
|
|
|
@ -1472,7 +1472,7 @@ il4965_commit_rxon(struct il_priv *il, struct il_rxon_context *ctx)
|
|||
active_rxon->filter_flags &= ~RXON_FILTER_ASSOC_MSK;
|
||||
|
||||
ret =
|
||||
il_send_cmd_pdu(il, ctx->rxon_cmd,
|
||||
il_send_cmd_pdu(il, C_RXON,
|
||||
sizeof(struct il_rxon_cmd), active_rxon);
|
||||
|
||||
/* If the mask clearing failed then we set
|
||||
|
@ -1503,7 +1503,7 @@ il4965_commit_rxon(struct il_priv *il, struct il_rxon_context *ctx)
|
|||
*/
|
||||
if (!new_assoc) {
|
||||
ret =
|
||||
il_send_cmd_pdu(il, ctx->rxon_cmd,
|
||||
il_send_cmd_pdu(il, C_RXON,
|
||||
sizeof(struct il_rxon_cmd), &il->staging);
|
||||
if (ret) {
|
||||
IL_ERR("Error setting new RXON (%d)\n", ret);
|
||||
|
@ -1525,7 +1525,7 @@ il4965_commit_rxon(struct il_priv *il, struct il_rxon_context *ctx)
|
|||
* RXON assoc doesn't clear the station table in uCode,
|
||||
*/
|
||||
ret =
|
||||
il_send_cmd_pdu(il, ctx->rxon_cmd,
|
||||
il_send_cmd_pdu(il, C_RXON,
|
||||
sizeof(struct il_rxon_cmd), &il->staging);
|
||||
if (ret) {
|
||||
IL_ERR("Error setting new RXON (%d)\n", ret);
|
||||
|
|
|
@ -1175,7 +1175,7 @@ struct il_rxon_context {
|
|||
|
||||
u8 bcast_sta_id, ap_sta_id;
|
||||
|
||||
u8 rxon_cmd, rxon_assoc_cmd, rxon_timing_cmd;
|
||||
u8 rxon_assoc_cmd, rxon_timing_cmd;
|
||||
u8 qos_cmd;
|
||||
u8 wep_key_cmd;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue