diff options
| author | Johannes Berg <[email protected]> | 2022-01-30 09:52:59 +0000 |
|---|---|---|
| committer | Luca Coelho <[email protected]> | 2022-02-18 08:40:52 +0000 |
| commit | f5cdcb866741bebc36b2f41d595b8272f308b4c5 (patch) | |
| tree | f04e4aacf0132e9efffffc25a32750cede014968 /drivers/net/wireless/intel/iwlwifi/mvm/ops.c | |
| parent | iwlwifi: pcie: make sure iwl_rx_packet_payload_len() will not underflow (diff) | |
| download | kernel-f5cdcb866741bebc36b2f41d595b8272f308b4c5.tar.gz kernel-f5cdcb866741bebc36b2f41d595b8272f308b4c5.zip | |
iwlwifi: fw: make dump_start callback void
We never return errors there, so just make it void.
Signed-off-by: Johannes Berg <[email protected]>
Signed-off-by: Luca Coelho <[email protected]>
Link: https://lore.kernel.org/r/iwlwifi.20220130115024.375b3a28d89e.Ia76e9bf13e26eb148abfebdaf859eab1b81d2af1@changeid
Signed-off-by: Luca Coelho <[email protected]>
Diffstat (limited to 'drivers/net/wireless/intel/iwlwifi/mvm/ops.c')
| -rw-r--r-- | drivers/net/wireless/intel/iwlwifi/mvm/ops.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/ops.c b/drivers/net/wireless/intel/iwlwifi/mvm/ops.c index d3122a3870b9..a4c1fdf33b76 100644 --- a/drivers/net/wireless/intel/iwlwifi/mvm/ops.c +++ b/drivers/net/wireless/intel/iwlwifi/mvm/ops.c @@ -639,13 +639,11 @@ unlock: mutex_unlock(&mvm->mutex); } -static int iwl_mvm_fwrt_dump_start(void *ctx) +static void iwl_mvm_fwrt_dump_start(void *ctx) { struct iwl_mvm *mvm = ctx; mutex_lock(&mvm->mutex); - - return 0; } static void iwl_mvm_fwrt_dump_end(void *ctx) |
