You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.1 KiB
29 lines
1.1 KiB
From 55be0dbc4aa21b2584afd83a676b0baed9934c2b Mon Sep 17 00:00:00 2001
|
|
From: Eugene Syromiatnikov <esyr@redhat.com>
|
|
Date: Thu, 25 Jul 2019 13:52:20 +0200
|
|
Subject: [PATCH 3/7] Revert "iwlwifi: fix 64-bit division"
|
|
|
|
This reverts commit 688cd8bd2c0fa9dc88e5ced55a73ddc79edf875d.
|
|
---
|
|
drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c b/drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c
|
|
index 94132cfd1f56..e9822a3ec373 100644
|
|
--- a/drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c
|
|
+++ b/drivers/net/wireless/intel/iwlwifi/mvm/ftm-initiator.c
|
|
@@ -460,7 +460,9 @@ static int iwl_mvm_ftm_range_resp_valid(struct iwl_mvm *mvm, u8 request_id,
|
|
static void iwl_mvm_debug_range_resp(struct iwl_mvm *mvm, u8 index,
|
|
struct cfg80211_pmsr_result *res)
|
|
{
|
|
- s64 rtt_avg = div_s64(res->ftm.rtt_avg * 100, 6666);
|
|
+ s64 rtt_avg = res->ftm.rtt_avg * 100;
|
|
+
|
|
+ do_div(rtt_avg, 6666);
|
|
|
|
IWL_DEBUG_INFO(mvm, "entry %d\n", index);
|
|
IWL_DEBUG_INFO(mvm, "\tstatus: %d\n", res->status);
|
|
--
|
|
2.13.6
|
|
|