correct (reversed) ms<->tu macros

Reviewed by:	apatti, kcyu
This commit is contained in:
sam 2005-12-29 19:03:45 +00:00
parent 7a859bc28a
commit d27cba6029

View File

@ -81,8 +81,8 @@
#define IEEE80211_RTS_DEFAULT IEEE80211_RTS_MAX
#define IEEE80211_FRAG_DEFAULT IEEE80211_FRAG_MAX
#define IEEE80211_MS_TO_TU(x) (((x) * 1000) / 1024)
#define IEEE80211_TU_TO_MS(x) (((x) * 1024) / 1000)
#define IEEE80211_MS_TO_TU(x) (((x) * 1024) / 1000)
#define IEEE80211_TU_TO_MS(x) (((x) * 1000) / 1024)
struct ieee80211_aclator;
struct sysctl_ctx_list;