diff options
Diffstat (limited to 'drivers/net/wireless/iwlwifi/mvm/debugfs.c')
-rw-r--r-- | drivers/net/wireless/iwlwifi/mvm/debugfs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/debugfs.c b/drivers/net/wireless/iwlwifi/mvm/debugfs.c index bef487bb880e..e57812999033 100644 --- a/drivers/net/wireless/iwlwifi/mvm/debugfs.c +++ b/drivers/net/wireless/iwlwifi/mvm/debugfs.c | |||
@@ -681,7 +681,7 @@ static ssize_t iwl_dbgfs_fw_restart_write(struct iwl_mvm *mvm, char *buf, | |||
681 | mvm->restart_fw++; | 681 | mvm->restart_fw++; |
682 | 682 | ||
683 | /* take the return value to make compiler happy - it will fail anyway */ | 683 | /* take the return value to make compiler happy - it will fail anyway */ |
684 | ret = iwl_mvm_send_cmd_pdu(mvm, REPLY_ERROR, CMD_SYNC, 0, NULL); | 684 | ret = iwl_mvm_send_cmd_pdu(mvm, REPLY_ERROR, 0, 0, NULL); |
685 | 685 | ||
686 | mutex_unlock(&mvm->mutex); | 686 | mutex_unlock(&mvm->mutex); |
687 | 687 | ||
@@ -838,7 +838,7 @@ static ssize_t iwl_dbgfs_bcast_filters_write(struct iwl_mvm *mvm, char *buf, | |||
838 | /* send updated bcast filtering configuration */ | 838 | /* send updated bcast filtering configuration */ |
839 | if (mvm->dbgfs_bcast_filtering.override && | 839 | if (mvm->dbgfs_bcast_filtering.override && |
840 | iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) | 840 | iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) |
841 | err = iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, CMD_SYNC, | 841 | err = iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0, |
842 | sizeof(cmd), &cmd); | 842 | sizeof(cmd), &cmd); |
843 | mutex_unlock(&mvm->mutex); | 843 | mutex_unlock(&mvm->mutex); |
844 | 844 | ||
@@ -910,7 +910,7 @@ static ssize_t iwl_dbgfs_bcast_filters_macs_write(struct iwl_mvm *mvm, | |||
910 | /* send updated bcast filtering configuration */ | 910 | /* send updated bcast filtering configuration */ |
911 | if (mvm->dbgfs_bcast_filtering.override && | 911 | if (mvm->dbgfs_bcast_filtering.override && |
912 | iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) | 912 | iwl_mvm_bcast_filter_build_cmd(mvm, &cmd)) |
913 | err = iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, CMD_SYNC, | 913 | err = iwl_mvm_send_cmd_pdu(mvm, BCAST_FILTER_CMD, 0, |
914 | sizeof(cmd), &cmd); | 914 | sizeof(cmd), &cmd); |
915 | mutex_unlock(&mvm->mutex); | 915 | mutex_unlock(&mvm->mutex); |
916 | 916 | ||