1. 23 4月, 2009 5 次提交
  2. 28 3月, 2009 1 次提交
  3. 17 3月, 2009 2 次提交
  4. 06 3月, 2009 1 次提交
    • J
      ath9k: Add data structure for supporting virtual radio/wiphy operation · bce048d7
      Jouni Malinen 提交于
      This is the initial step in allowing ath9k to register multiple
      virtual radios (wiphys). The goal of virtual radios is to allow the
      same radio to be shared for multiple virtual interfaces that may
      operate on different channels. The mac80211 virtual interface support
      is designed only for single channel operation and as such, it is not
      suitable for this type of use. Anyway, it can be used on top of the
      virtual radio concept, if desired (e.g., use two virtual radios to
      handle two channels and then add multiple mac80211 virtual interfaces
      on top of each virtual radio).
      
      The new struct ath_wiphy is now registered as the driver data
      structure for wiphy. This structure has a pointer to the shared (among
      virtual wiphys of the same physical radio) struct ath_softc data. The
      primary wiphy maintains the allocated memory for ath_softc. Secondary
      (virtual) wiphys will only allocate the new ath_wiphy structure.
      
      Registration of secondary wiphys is added in a separate patch.
      Signed-off-by: NJouni Malinen <jouni.malinen@atheros.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      bce048d7
  5. 28 2月, 2009 6 次提交
  6. 14 2月, 2009 3 次提交
  7. 10 2月, 2009 4 次提交
  8. 30 1月, 2009 2 次提交
    • L
      ath9k: fix debug print on regd · 0c6666e4
      Luis R. Rodriguez 提交于
      With debugging enabled and with ATH_DBG_REGULATORY
      selected we wouldn't get the full print out of one line,
      reason is we used "," instead of nothing to separate two
      lines.
      Signed-off-by: NLuis R. Rodriguez <lrodriguez@atheros.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      0c6666e4
    • L
      ath9k: simplify regulatory code · 5f8e077c
      Luis R. Rodriguez 提交于
      Now that cfg80211 has its own regulatory infrastructure we can
      condense ath9k's regulatory code considerably. We only keep data
      we need to provide our own regulatory_hint(), reg_notifier() and
      information necessary for calibration.
      
      Atheros hardware supports 12 world regulatory domains, since these
      are custom we apply them through the the new wiphy_apply_custom_regulatory().
      Although we have 12 we can consolidate these into 5 structures based on
      frequency and apply a different set of flags that differentiate them on
      a case by case basis through the reg_notifier().
      
      If CRDA is not found our own custom world regulatory domain is applied,
      this is identical to cfg80211's except we enable passive scan on most
      frequencies.
      Signed-off-by: NLuis R. Rodriguez <lrodriguez@atheros.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      5f8e077c
  9. 05 12月, 2008 3 次提交
  10. 07 8月, 2008 3 次提交