From owner-svn-src-all@FreeBSD.ORG Wed Jun 13 05:47:24 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E93CD106564A; Wed, 13 Jun 2012 05:47:24 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [69.147.83.44]) by mx1.freebsd.org (Postfix) with ESMTP id D4CA78FC15; Wed, 13 Jun 2012 05:47:24 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q5D5lOvn099207; Wed, 13 Jun 2012 05:47:24 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q5D5lOR8099205; Wed, 13 Jun 2012 05:47:24 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201206130547.q5D5lOR8099205@svn.freebsd.org> From: Adrian Chadd Date: Wed, 13 Jun 2012 05:47:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r236995 - head/sys/dev/ath X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2012 05:47:25 -0000 Author: adrian Date: Wed Jun 13 05:47:24 2012 New Revision: 236995 URL: http://svn.freebsd.org/changeset/base/236995 Log: Remove a duplicate definition. Modified: head/sys/dev/ath/if_ath_tx_ht.c Modified: head/sys/dev/ath/if_ath_tx_ht.c ============================================================================== --- head/sys/dev/ath/if_ath_tx_ht.c Wed Jun 13 05:41:00 2012 (r236994) +++ head/sys/dev/ath/if_ath_tx_ht.c Wed Jun 13 05:47:24 2012 (r236995) @@ -438,7 +438,6 @@ static void ath_rateseries_setup(struct ath_softc *sc, struct ieee80211_node *ni, struct ath_buf *bf, HAL_11N_RATE_SERIES *series) { -#define HT_RC_2_STREAMS(_rc) ((((_rc) & 0x78) >> 3) + 1) struct ieee80211com *ic = ni->ni_ic; struct ath_hal *ah = sc->sc_ah; HAL_BOOL shortPreamble = AH_FALSE; @@ -528,7 +527,6 @@ ath_rateseries_setup(struct ath_softc *s rt, pktlen, rc[i].rix, shortPreamble); } } -#undef HT_RC_2_STREAMS } #if 0