From owner-svn-src-all@FreeBSD.ORG Mon May 21 17:51:27 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 494B310658F3; Mon, 21 May 2012 17:51:27 +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 34C0D8FC17; Mon, 21 May 2012 17:51:27 +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 q4LHpQio067132; Mon, 21 May 2012 17:51:26 GMT (envelope-from adrian@svn.freebsd.org) Received: (from adrian@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q4LHpQc5067130; Mon, 21 May 2012 17:51:26 GMT (envelope-from adrian@svn.freebsd.org) Message-Id: <201205211751.q4LHpQc5067130@svn.freebsd.org> From: Adrian Chadd Date: Mon, 21 May 2012 17:51:26 +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: r235728 - 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: Mon, 21 May 2012 17:51:27 -0000 Author: adrian Date: Mon May 21 17:51:26 2012 New Revision: 235728 URL: http://svn.freebsd.org/changeset/base/235728 Log: Re-add 'ic' and properly wrap it in the SUPERG macro. Modified: head/sys/dev/ath/if_ath_rx.c Modified: head/sys/dev/ath/if_ath_rx.c ============================================================================== --- head/sys/dev/ath/if_ath_rx.c Mon May 21 16:03:44 2012 (r235727) +++ head/sys/dev/ath/if_ath_rx.c Mon May 21 17:51:26 2012 (r235728) @@ -767,6 +767,9 @@ ath_rx_proc(struct ath_softc *sc, int re struct ath_buf *bf; struct ifnet *ifp = sc->sc_ifp; struct ath_hal *ah = sc->sc_ah; +#ifdef IEEE80211_SUPPORT_SUPERG + struct ieee80211com *ic = ifp->if_l2com; +#endif struct ath_desc *ds; struct ath_rx_status *rs; struct mbuf *m;