Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 22 Jan 2007 05:46:20 GMT
From:      Sam Leffler <sam@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 113306 for review
Message-ID:  <200701220546.l0M5kK78073062@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=113306

Change 113306 by sam@sam_ebb on 2007/01/22 05:46:15

	fix compilation with ATH_DEBUG

Affected files ...

.. //depot/projects/wifi/sys/dev/ath/if_ath.c#128 edit

Differences ...

==== //depot/projects/wifi/sys/dev/ath/if_ath.c#128 (text+ko) ====

@@ -4802,7 +4802,7 @@
 			ath_printtxbuf(bf, txq->axq_qnum, ix,
 				ath_hal_txprocdesc(ah, bf->bf_desc,
 				    &bf->bf_status.ds_txstat) == HAL_OK);
-			ieee80211_dump_pkt(mtod(bf->bf_m, caddr_t),
+			ieee80211_dump_pkt(&sc->sc_ic, mtod(bf->bf_m, caddr_t),
 				bf->bf_m->m_len, 0, -1);
 		}
 #endif /* ATH_DEBUG */
@@ -4869,7 +4869,7 @@
 			ath_printtxbuf(bf, sc->sc_bhalq, 0,
 				ath_hal_txprocdesc(ah, bf->bf_desc,
 				    &bf->bf_status.ds_txstat) == HAL_OK);
-			ieee80211_dump_pkt(mtod(bf->bf_m, caddr_t),
+			ieee80211_dump_pkt(&sc->sc_ic, mtod(bf->bf_m, caddr_t),
 				bf->bf_m->m_len, 0, -1);
 		}
 	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200701220546.l0M5kK78073062>