svn commit: r233050 - head/sys/net80211

Adrian Chadd adrian at FreeBSD.org
Fri Mar 16 23:08:14 UTC 2012


Author: adrian
Date: Fri Mar 16 23:08:13 2012
New Revision: 233050
URL: http://svn.freebsd.org/changeset/base/233050

Log:
  Pull in a dependency on ALQ if it's compiled with IEEE80211_ALQ.

Modified:
  head/sys/net80211/ieee80211_freebsd.c

Modified: head/sys/net80211/ieee80211_freebsd.c
==============================================================================
--- head/sys/net80211/ieee80211_freebsd.c	Fri Mar 16 21:46:02 2012	(r233049)
+++ head/sys/net80211/ieee80211_freebsd.c	Fri Mar 16 23:08:13 2012	(r233050)
@@ -827,3 +827,7 @@ static moduledata_t wlan_mod = {
 DECLARE_MODULE(wlan, wlan_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
 MODULE_VERSION(wlan, 1);
 MODULE_DEPEND(wlan, ether, 1, 1, 1);
+#ifdef	IEEE80211_ALQ
+MODULE_DEPEND(wlan, alq, 1, 1, 1);
+#endif	/* IEEE80211_ALQ */
+


More information about the svn-src-head mailing list