aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Spinadel <[email protected]>2013-10-17 09:49:12 +0300
committerJohannes Berg <[email protected]>2013-10-18 16:02:38 +0200
commit246dd9922e859768aa522daa6c1c601785e57e0c (patch)
treef9ee27959f71ba0e32982682e3a9ad33ad86246e
parent3f617281a64b8a9c1c9f9fb76ea6bc642e1a1b01 (diff)
iwlwifi: mvm: fix operator precedence
Integers need to be multiplied before division. Signed-off-by: David Spinadel <[email protected]> Reviewed-by: Emmanuel Grumbach <[email protected]> Signed-off-by: Johannes Berg <[email protected]>
-rw-r--r--drivers/net/wireless/iwlwifi/mvm/quota.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/wireless/iwlwifi/mvm/quota.c b/drivers/net/wireless/iwlwifi/mvm/quota.c
index 3fc986eb0d6c..17e2bc827f9a 100644
--- a/drivers/net/wireless/iwlwifi/mvm/quota.c
+++ b/drivers/net/wireless/iwlwifi/mvm/quota.c
@@ -151,7 +151,8 @@ static void iwl_mvm_adjust_quota_for_noa(struct iwl_mvm *mvm,
if (id != phy_id)
continue;
- quota *= (beacon_int - mvm->noa_duration) / beacon_int;
+ quota *= (beacon_int - mvm->noa_duration);
+ quota /= beacon_int;
cmd->quotas[i].quota = cpu_to_le32(quota);
}