From patchwork Fri Aug 10 11:17:16 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sujith Manoharan X-Patchwork-Id: 1305071 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork1.kernel.org (Postfix) with ESMTP id 812343FC66 for ; Fri, 10 Aug 2012 11:18:34 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752115Ab2HJLSc (ORCPT ); Fri, 10 Aug 2012 07:18:32 -0400 Received: from wolverine02.qualcomm.com ([199.106.114.251]:4924 "EHLO wolverine02.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750781Ab2HJLSb (ORCPT ); Fri, 10 Aug 2012 07:18:31 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=qca.qualcomm.com; i=@qca.qualcomm.com; q=dns/txt; s=qcdkim; t=1344597512; x=1376133512; h=from:mime-version:content-transfer-encoding:message-id: date:to:cc:subject; bh=ckm9O4uTR04r+zl5w2bOkyYorR2NyukKwMoorA7XUM4=; b=wRK9EPyRGJSGbdKx8yntD6Y+o2dIR1A/swoeaAwJSSl/0T3o77Lbrl9c hZuDRdjBSc+Pews5f2BKiNg93H+I+h9p7utx+bgCfQBCxP2GhSgz98jsC YPI91n34CU6EHu30PODOf+1siUO+T37KAXoURc80154qIrxQQ3tGpkukD Q=; X-IronPort-AV: E=McAfee;i="5400,1158,6798"; a="221441734" Received: from ironmsg02-r.qualcomm.com ([172.30.46.16]) by wolverine02.qualcomm.com with ESMTP; 10 Aug 2012 04:18:31 -0700 X-IronPort-AV: E=Sophos;i="4.77,745,1336374000"; d="scan'208";a="160382248" Received: from nasanexhc04.na.qualcomm.com ([172.30.48.17]) by ironmsg02-R.qualcomm.com with ESMTP/TLS/RC4-SHA; 10 Aug 2012 04:18:31 -0700 Received: from alfalfa (172.30.48.1) by qcmail1.qualcomm.com (172.30.48.17) with Microsoft SMTP Server (TLS) id 14.2.309.2; Fri, 10 Aug 2012 04:18:29 -0700 From: Sujith Manoharan MIME-Version: 1.0 Message-ID: <20516.60860.613529.806792@gargle.gargle.HOWL> Date: Fri, 10 Aug 2012 16:47:16 +0530 To: X-Mailer: VM 8.2.0b under 24.1.1 (x86_64-unknown-linux-gnu) CC: Subject: [PATCH 13/15] ath9k: Remove MIMO-PS specific code X-Originating-IP: [172.30.48.1] Sender: linux-wireless-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-wireless@vger.kernel.org Signed-off-by: Sujith Manoharan --- drivers/net/wireless/ath/ath9k/rc.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/drivers/net/wireless/ath/ath9k/rc.c b/drivers/net/wireless/ath/ath9k/rc.c index 2051fac..cce0c51 100644 --- a/drivers/net/wireless/ath/ath9k/rc.c +++ b/drivers/net/wireless/ath/ath9k/rc.c @@ -1120,15 +1120,6 @@ static void ath_rc_tx_status(struct ath_softc *sc, rates[i].count); } } - } else { - /* - * Handle the special case of MIMO PS burst, where the second - * aggregate is sent out with only one rate and one try. - * Treating it as an excessive retry penalizes the rate - * inordinately. - */ - if (rates[0].count == 1 && xretries == 1) - xretries = 2; } flags = rates[final_ts_idx].flags;