iwlwifi: dbg: avoid passing trigger around
The trigger structure is being passed around, when all we care about is whether to dump only monitor or not. Pass a bool instead. Signed-off-by: Sara Sharon <sara.sharon@intel.com> Signed-off-by: Luca Coelho <luciano.coelho@intel.com>
This commit is contained in:
@@ -602,8 +602,7 @@ struct iwl_trans_ops {
|
||||
void (*resume)(struct iwl_trans *trans);
|
||||
|
||||
struct iwl_trans_dump_data *(*dump_data)(struct iwl_trans *trans,
|
||||
const struct iwl_fw_dbg_trigger_tlv
|
||||
*trigger);
|
||||
bool monitor_only);
|
||||
};
|
||||
|
||||
/**
|
||||
@@ -897,12 +896,11 @@ static inline void iwl_trans_resume(struct iwl_trans *trans)
|
||||
}
|
||||
|
||||
static inline struct iwl_trans_dump_data *
|
||||
iwl_trans_dump_data(struct iwl_trans *trans,
|
||||
const struct iwl_fw_dbg_trigger_tlv *trigger)
|
||||
iwl_trans_dump_data(struct iwl_trans *trans, bool monitor_only)
|
||||
{
|
||||
if (!trans->ops->dump_data)
|
||||
return NULL;
|
||||
return trans->ops->dump_data(trans, trigger);
|
||||
return trans->ops->dump_data(trans, monitor_only);
|
||||
}
|
||||
|
||||
static inline struct iwl_device_cmd *
|
||||
|
Reference in New Issue
Block a user