Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 369646
b: refs/heads/master
c: 4587eea
h: refs/heads/master
v: v3
  • Loading branch information
Bing Zhao authored and John W. Linville committed Apr 22, 2013
1 parent dae74e5 commit 490d8ca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0648f3a4b0e9598d75e8f68f0e20874239c2cb95
refs/heads/master: 4587eea5b787b8373c72791a92084010f79443d0
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/mwifiex/11n_rxreorder.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ int mwifiex_11n_rx_reorder_pkt(struct mwifiex_private *priv,
end_win = ((start_win + win_size) - 1) & (MAX_TID_VALUE - 1);
del_timer(&tbl->timer_context.timer);
mod_timer(&tbl->timer_context.timer,
jiffies + (MIN_FLUSH_TIMER_MS * win_size * HZ) / 1000);
jiffies + msecs_to_jiffies(MIN_FLUSH_TIMER_MS * win_size));

/*
* If seq_num is less then starting win then ignore and drop the
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/net/wireless/mwifiex/cmdevt.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ static int mwifiex_dnld_cmd_to_fw(struct mwifiex_private *priv,

/* Setup the timer after transmit command */
mod_timer(&adapter->cmd_timer,
jiffies + (MWIFIEX_TIMER_10S * HZ) / 1000);
jiffies + msecs_to_jiffies(MWIFIEX_TIMER_10S));

return 0;
}
Expand Down

0 comments on commit 490d8ca

Please sign in to comment.