From patchwork Tue Aug 7 01:14:47 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sujith Manoharan X-Patchwork-Id: 1282351 Return-Path: X-Original-To: patchwork-linux-wireless@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by patchwork2.kernel.org (Postfix) with ESMTP id 1BE88DF288 for ; Tue, 7 Aug 2012 01:16:12 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757144Ab2HGBQJ (ORCPT ); Mon, 6 Aug 2012 21:16:09 -0400 Received: from wolverine02.qualcomm.com ([199.106.114.251]:13664 "EHLO wolverine02.qualcomm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757140Ab2HGBQI (ORCPT ); Mon, 6 Aug 2012 21:16:08 -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=1344302169; x=1375838169; h=from:mime-version:content-transfer-encoding:message-id: date:to:cc:subject; bh=ckm9O4uTR04r+zl5w2bOkyYorR2NyukKwMoorA7XUM4=; b=vkN2j67hgaPjCGPcxo+qrCPFbH+4HMDTF+EmM4oy+vT81gULO020cjLW M9BXmzkuoM3UuCm4og2XvBRP34a+RRFwy/l3VI/FTxihRLYPgiStwjKrp CB6tbM99XGtcdV6PpFU8OIH4iZfFa3HniAdTy/lLcy+wk1LqqnG/pH+dH k=; X-IronPort-AV: E=McAfee;i="5400,1158,6795"; a="219150434" Received: from ironmsg03-l.qualcomm.com ([172.30.48.18]) by wolverine02.qualcomm.com with ESMTP; 06 Aug 2012 18:16:09 -0700 X-IronPort-AV: E=Sophos;i="4.77,723,1336374000"; d="scan'208";a="300949105" Received: from nasanexhc10.na.qualcomm.com ([172.30.48.3]) by Ironmsg03-L.qualcomm.com with ESMTP/TLS/RC4-SHA; 06 Aug 2012 18:16:09 -0700 Received: from nasanexhc05.na.qualcomm.com (172.30.48.2) by nasanexhc10.na.qualcomm.com (172.30.48.3) with Microsoft SMTP Server (TLS) id 14.2.309.2; Mon, 6 Aug 2012 18:16:07 -0700 Received: from sarge (172.30.48.1) by qcmail1.qualcomm.com (172.30.48.2) with Microsoft SMTP Server (TLS) id 14.2.309.2; Mon, 6 Aug 2012 18:16:07 -0700 From: Sujith Manoharan MIME-Version: 1.0 Message-ID: <20512.27655.51108.298733@gargle.gargle.HOWL> Date: Tue, 7 Aug 2012 06:44:47 +0530 To: X-Mailer: VM 8.2.0b under 24.1.1 (x86_64-unknown-linux-gnu) CC: Subject: [RFC 13/14] 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;