From owner-svn-src-user@FreeBSD.ORG Wed Sep 14 14:37:55 2011 Return-Path: Delivered-To: svn-src-user@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 213FF1065670; Wed, 14 Sep 2011 14:37:55 +0000 (UTC) (envelope-from adrian@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 116838FC13; Wed, 14 Sep 2011 14:37:55 +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 p8EEbsTs030535; Wed, 14 Sep 2011 14:37:54 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id p8EEbsG6030533; Wed, 14 Sep 2011 14:37:54 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201109141437.p8EEbsG6030533@svn.freebsd.org> From: Adrian Chadd Date: Wed, 14 Sep 2011 14:37:54 +0000 (UTC) To: src-committers@freebsd.org, svn-src-user@freebsd.org X-SVN-Group: user MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r225555 - user/adrian/if_ath_tx/sys/dev/ath X-BeenThere: svn-src-user@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the experimental " user" src tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Sep 2011 14:37:55 -0000 Author: adrian Date: Wed Sep 14 14:37:54 2011 New Revision: 225555 URL: http://svn.freebsd.org/changeset/base/225555 Log: Remove unused ds0 variable. Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Modified: user/adrian/if_ath_tx/sys/dev/ath/if_ath.c ============================================================================== --- user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Wed Sep 14 13:27:24 2011 (r225554) +++ user/adrian/if_ath_tx/sys/dev/ath/if_ath.c Wed Sep 14 14:37:54 2011 (r225555) @@ -4314,7 +4314,7 @@ ath_tx_processq(struct ath_softc *sc, st { struct ath_hal *ah = sc->sc_ah; struct ath_buf *bf, *last; - struct ath_desc *ds, *ds0; + struct ath_desc *ds; struct ath_tx_status *ts; struct ieee80211_node *ni; struct ath_node *an; @@ -4333,7 +4333,6 @@ ath_tx_processq(struct ath_softc *sc, st if (bf == NULL) { break; } - ds0 = &bf->bf_desc[0]; ds = bf->bf_lastds; /* XXX must be setup correctly! */ ts = &bf->bf_status.ds_txstat; status = ath_hal_txprocdesc(ah, ds, ts);