diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-09-22 10:17:05 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2005-09-22 10:17:05 +0000 |
commit | 5a3e03c283e3232994091218f409480317e1b07a (patch) | |
tree | 88581a7fca18d598a7be813a7abc96cd22829c88 /sys/dev/pci/if_ath_pci.c | |
parent | 7933078233edb5edd6814b94bf4e921cc5afea89 (diff) |
remove the very basic ath(4) rate control implementation and use
rssadapt(9) instead. this may need some further work but now it's in
the right place and shared with other drivers (like ral(4)).
yes jsg@
Diffstat (limited to 'sys/dev/pci/if_ath_pci.c')
-rw-r--r-- | sys/dev/pci/if_ath_pci.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/pci/if_ath_pci.c b/sys/dev/pci/if_ath_pci.c index 46671cbcac5..31c59429f38 100644 --- a/sys/dev/pci/if_ath_pci.c +++ b/sys/dev/pci/if_ath_pci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ath_pci.c,v 1.10 2005/09/08 18:45:28 reyk Exp $ */ +/* $OpenBSD: if_ath_pci.c,v 1.11 2005/09/22 10:17:04 reyk Exp $ */ /* $NetBSD: if_ath_pci.c,v 1.7 2004/06/30 05:58:17 mycroft Exp $ */ /*- @@ -66,6 +66,7 @@ #endif #include <net80211/ieee80211_var.h> +#include <net80211/ieee80211_rssadapt.h> #include <dev/gpio/gpiovar.h> |