1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

- Nuke unnecessary header.

- Make wlan_amrr depend on wlan, so that it can find various symbols in
  wlan module if wlan is not compiled into kernel.

Approved by:	sam (mentor)
Tested by:	kevlo
This commit is contained in:
Sepherosa Ziehau 2007-05-05 11:07:52 +00:00
parent 25f4d9a90a
commit 63afe606f8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=169281

View File

@ -42,7 +42,6 @@ __FBSDID("$FreeBSD$");
#include <netinet/if_ether.h>
#endif
#include <net80211/ieee80211.h>
#include <net80211/ieee80211_var.h>
#include <net80211/ieee80211_amrr.h>
@ -162,3 +161,4 @@ static moduledata_t amrr_mod = {
};
DECLARE_MODULE(wlan_amrr, amrr_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
MODULE_VERSION(wlan_amrr, 1);
MODULE_DEPEND(wlan_amrr, wlan, 1, 1, 1);