diff options
author | Sam Leffler <sam@FreeBSD.org> | 2005-03-11 19:40:34 +0000 |
---|---|---|
committer | Sam Leffler <sam@FreeBSD.org> | 2005-03-11 19:40:34 +0000 |
commit | e7d0dbaeeaa80c2c4b97e7ccefea4cb5245c47b9 (patch) | |
tree | e795c5e48be2fcd3e0162582969790687e54a7a3 | |
parent | 56856fbfb44e1dacf2b58b22f476422106f9472c (diff) | |
download | src-e7d0dbaeeaa80c2c4b97e7ccefea4cb5245c47b9.tar.gz src-e7d0dbaeeaa80c2c4b97e7ccefea4cb5245c47b9.zip |
reorder ath_rate_onoe to after ath_rate_sample so it gets used as the
default rate control algorithm; this should be done differently but for
now use this simple solution
Notes
Notes:
svn path=/head/; revision=143426
-rw-r--r-- | sys/modules/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/modules/Makefile b/sys/modules/Makefile index 2dbc06d39b42..666150a92d8b 100644 --- a/sys/modules/Makefile +++ b/sys/modules/Makefile @@ -26,8 +26,8 @@ SUBDIR= ${_3dfx} \ ath \ ${_ath_hal} \ ath_rate_amrr \ - ath_rate_onoe \ ath_rate_sample \ + ath_rate_onoe \ aue \ ${_auxio} \ ${_awi} \ |