All of lore.kernel.org
 help / color / mirror / Atom feed
* [ath9k-devel] [PATCH 01/20] ath10k: Remove duplicate UART init code
@ 2013-04-28 15:31 Sujith Manoharan
  2013-04-28 15:31 ` [ath9k-devel] [PATCH 02/20] ath10k: Merge mac.h with core.h Sujith Manoharan
                   ` (19 more replies)
  0 siblings, 20 replies; 43+ messages in thread
From: Sujith Manoharan @ 2013-04-28 15:31 UTC (permalink / raw)
  To: ath9k-devel

From: Sujith Manoharan <c_manoha@qca.qualcomm.com>

Signed-off-by: Sujith Manoharan <c_manoha@qca.qualcomm.com>
---
 drivers/net/wireless/ath/ath10k/core.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/drivers/net/wireless/ath/ath10k/core.c b/drivers/net/wireless/ath/ath10k/core.c
index 6b83d29..0ec7986 100644
--- a/drivers/net/wireless/ath/ath10k/core.c
+++ b/drivers/net/wireless/ath/ath10k/core.c
@@ -534,10 +534,6 @@ int ath10k_core_register(struct ath10k *ar)
 	if (status)
 		goto err;
 
-	status = ath10k_init_uart(ar);
-	if (status)
-		goto err;
-
 	htc_ops.target_send_suspend_complete = ath10k_send_suspend_complete;
 
 	ar->htc = ath10k_htc_create(ar, &htc_ops);
-- 
1.8.2.2

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

end of thread, other threads:[~2013-05-02  8:38 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-28 15:31 [ath9k-devel] [PATCH 01/20] ath10k: Remove duplicate UART init code Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 02/20] ath10k: Merge mac.h with core.h Sujith Manoharan
2013-04-30 18:23   ` Kalle Valo
2013-04-30 23:51     ` Sujith Manoharan
2013-05-02  7:41       ` Kalle Valo
2013-05-02  8:38         ` Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 03/20] ath10k: Rename HIF callback post_init as init Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 04/20] ath10k: Remove "ar" inside WMI structure Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 05/20] ath10k: Remove "htc" inside HTT struct Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 06/20] ath10k: Move debug routines to debug.c Sujith Manoharan
2013-04-30 18:28   ` Kalle Valo
2013-04-28 15:31 ` [ath9k-devel] [PATCH 07/20] ath10k: Remove void pointers in HTC endpoints Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 08/20] ath10k: Use lockless SKB queue routines Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 09/20] ath10k: Optimize HTC queue handling Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 10/20] ath10k: Remove "credits_used" from SKB CB Sujith Manoharan
2013-04-29  5:45   ` Michal Kazior
2013-04-29  6:02     ` Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 11/20] ath10k: Disable credit flow control for EP0 Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 12/20] ath10k: Optimize credit allocation Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 13/20] ath10k: Remove unused variable in processing credit report Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 14/20] ath10k: Print HTC service name Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 15/20] ath10k: Fix typo Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 16/20] ath10k: Merge txrx.c with HTT Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 17/20] ath10k: Use IS_ALIGNED macro to check alignment Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 18/20] ath10k: Move htt_rx_ind_get_mpdu_ranges to htt_rx.c Sujith Manoharan
2013-04-29  5:51   ` Michal Kazior
2013-04-29  6:03     ` Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 19/20] ath10k: Simplify excessively nested HTT structure layout Sujith Manoharan
2013-04-28 15:31 ` [ath9k-devel] [PATCH 20/20] ath10k: Remove unneeded locks during HTT RX attach Sujith Manoharan
2013-04-29  6:07   ` Michal Kazior
2013-04-29  6:41     ` Sujith Manoharan
2013-04-29  6:48       ` Sujith Manoharan
2013-04-29  7:08         ` Sujith Manoharan
2013-04-29  7:27           ` Michal Kazior
2013-04-29  8:14             ` Sujith Manoharan
2013-04-29  8:34               ` Michal Kazior
2013-04-29  8:47                 ` Sujith Manoharan
2013-04-30 11:43 ` [ath9k-devel] [PATCH 01/20] ath10k: Remove duplicate UART init code Kalle Valo
2013-04-30 13:21   ` Sujith Manoharan
2013-04-30 13:38     ` Kalle Valo
2013-04-30 13:42       ` Sujith Manoharan
2013-04-30 13:55   ` Sujith Manoharan
2013-04-30 14:00     ` 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.