All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH 0/2] ath10k: minor fixes
@ 2013-05-10  5:19 Michal Kazior
  2013-05-10  5:19 ` [ath9k-devel] [PATCH 1/2] ath10k: fix typo in macro name Michal Kazior
  2013-05-10  5:19 ` [ath9k-devel] [PATCH 2/2] ath10k: use msecs_to_jiffies() Michal Kazior
  0 siblings, 2 replies; 4+ messages in thread
From: Michal Kazior @ 2013-05-10  5:19 UTC (permalink / raw)
  To: ath9k-devel

Michal Kazior (2):
  ath10k: fix typo in macro name
  ath10k: use msecs_to_jiffies()

 drivers/net/wireless/ath/ath10k/mac.c |    2 +-
 drivers/net/wireless/ath/ath10k/wmi.h |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [ath9k-devel] [PATCH 1/2] ath10k: fix typo in macro name
  2013-05-10  5:19 [ath9k-devel] [PATCH 0/2] ath10k: minor fixes Michal Kazior
@ 2013-05-10  5:19 ` Michal Kazior
  2013-05-10  5:19 ` [ath9k-devel] [PATCH 2/2] ath10k: use msecs_to_jiffies() Michal Kazior
  1 sibling, 0 replies; 4+ messages in thread
From: Michal Kazior @ 2013-05-10  5:19 UTC (permalink / raw)
  To: ath9k-devel

Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
---
 drivers/net/wireless/ath/ath10k/wmi.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ath/ath10k/wmi.h b/drivers/net/wireless/ath/ath10k/wmi.h
index 2ad0431..ecd6487 100644
--- a/drivers/net/wireless/ath/ath10k/wmi.h
+++ b/drivers/net/wireless/ath/ath10k/wmi.h
@@ -570,7 +570,7 @@ enum wmi_channel_change_cause {
 #define WMI_VHT_CAP_RX_STBC_MASK                 0x00000300
 #define WMI_VHT_CAP_RX_STBC_MASK_SHIFT           8
 #define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP            0x03800000
-#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIT       23
+#define WMI_VHT_CAP_MAX_AMPDU_LEN_EXP_SHIFT      23
 #define WMI_VHT_CAP_RX_FIXED_ANT                 0x10000000
 #define WMI_VHT_CAP_TX_FIXED_ANT                 0x20000000
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [ath9k-devel] [PATCH 2/2] ath10k: use msecs_to_jiffies()
  2013-05-10  5:19 [ath9k-devel] [PATCH 0/2] ath10k: minor fixes Michal Kazior
  2013-05-10  5:19 ` [ath9k-devel] [PATCH 1/2] ath10k: fix typo in macro name Michal Kazior
@ 2013-05-10  5:19 ` Michal Kazior
  2013-05-14  4:43   ` Kalle Valo
  1 sibling, 1 reply; 4+ messages in thread
From: Michal Kazior @ 2013-05-10  5:19 UTC (permalink / raw)
  To: ath9k-devel

Signed-off-by: Michal Kazior <michal.kazior@tieto.com>
---
 drivers/net/wireless/ath/ath10k/mac.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/wireless/ath/ath10k/mac.c b/drivers/net/wireless/ath/ath10k/mac.c
index bf7954b..99cb5ad 100644
--- a/drivers/net/wireless/ath/ath10k/mac.c
+++ b/drivers/net/wireless/ath/ath10k/mac.c
@@ -1516,7 +1516,7 @@ static int ath10k_start_scan(struct ath10k *ar,
 	 * false. Add a 200ms margin to account event/command
 	 * processing. */
 	mod_timer(&ar->scan.timeout, jiffies +
-		  ((arg->max_scan_time+200)*HZ)/1000);
+		  msecs_to_jiffies(arg->max_scan_time+200));
 	return 0;
 }
 
-- 
1.7.9.5

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [ath9k-devel] [PATCH 2/2] ath10k: use msecs_to_jiffies()
  2013-05-10  5:19 ` [ath9k-devel] [PATCH 2/2] ath10k: use msecs_to_jiffies() Michal Kazior
@ 2013-05-14  4:43   ` Kalle Valo
  0 siblings, 0 replies; 4+ messages in thread
From: Kalle Valo @ 2013-05-14  4:43 UTC (permalink / raw)
  To: ath9k-devel

Michal Kazior <michal.kazior@tieto.com> writes:

> Signed-off-by: Michal Kazior <michal.kazior@tieto.com>

Thanks, applied.

-- 
Kalle Valo

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-05-14  4:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-05-10  5:19 [ath9k-devel] [PATCH 0/2] ath10k: minor fixes Michal Kazior
2013-05-10  5:19 ` [ath9k-devel] [PATCH 1/2] ath10k: fix typo in macro name Michal Kazior
2013-05-10  5:19 ` [ath9k-devel] [PATCH 2/2] ath10k: use msecs_to_jiffies() Michal Kazior
2013-05-14  4:43   ` Kalle Valo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.