Index: sys/dev/usb/wlan/if_uath.c =================================================================== --- sys/dev/usb/wlan/if_uath.c (revision 192108) +++ sys/dev/usb/wlan/if_uath.c (working copy) @ -1492,7 +1493,7 @@ if (IEEE80211_IS_CHAN_5GHZ(c)) reset.flags |= htobe32(UATH_CHAN_5GHZ); /* NB: 11g =>'s 11b so don't specify both OFDM and CCK */ - if (IEEE80211_IS_CHAN_G(c)) + if (IEEE80211_IS_CHAN_G(c) || IEEE80211_IS_CHAN_A(c)) reset.flags |= htobe32(UATH_CHAN_OFDM); else if (IEEE80211_IS_CHAN_B(c)) reset.flags |= htobe32(UATH_CHAN_CCK);