Skip to content

Commit

Permalink
iwlwifi: remove pointer to transport from op_mode
Browse files Browse the repository at this point in the history
This pointer was not used anywhere.

Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@intel.com>
  • Loading branch information
egrumbach committed Dec 17, 2013
1 parent a0c38b2 commit 03b67e9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions drivers/net/wireless/iwlwifi/iwl-op-mode.h
Original file line number Diff line number Diff line change
Expand Up @@ -155,14 +155,12 @@ void iwl_opmode_deregister(const char *name);

/**
* struct iwl_op_mode - operational mode
* @ops - pointer to its own ops
*
* This holds an implementation of the mac80211 / fw API.
*
* @ops - pointer to its own ops
*/
struct iwl_op_mode {
const struct iwl_op_mode_ops *ops;
const struct iwl_trans *trans;

char op_mode_specific[0] __aligned(sizeof(void *));
};
Expand Down
1 change: 0 additions & 1 deletion drivers/net/wireless/iwlwifi/mvm/ops.c
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,6 @@ iwl_op_mode_mvm_start(struct iwl_trans *trans, const struct iwl_cfg *cfg,

op_mode = hw->priv;
op_mode->ops = &iwl_mvm_ops;
op_mode->trans = trans;

mvm = IWL_OP_MODE_GET_MVM(op_mode);
mvm->dev = trans->dev;
Expand Down

0 comments on commit 03b67e9

Please sign in to comment.