1. 27 6月, 2008 1 次提交
  2. 14 6月, 2008 1 次提交
  3. 29 5月, 2008 1 次提交
  4. 22 5月, 2008 5 次提交
  5. 15 5月, 2008 1 次提交
  6. 08 5月, 2008 1 次提交
  7. 02 5月, 2008 1 次提交
  8. 09 4月, 2008 5 次提交
  9. 08 3月, 2008 2 次提交
  10. 01 3月, 2008 3 次提交
  11. 16 2月, 2008 1 次提交
    • M
      b43: Add driver load messages · 26bc783f
      Michael Buesch 提交于
      This adds printk messages with basic information about the driver being loaded.
      This information includes a summary of the compiled-in features, which
      simplifies bug-reporting and debugging a lot.
      Also a firmware ID is printed. This is a unique identifier blob for a specific
      version of the firmware. This ID is attached to a specific version of the firmware
      blob in b43-fwcutter (see fwcutter git).
      This helps users to select the right firmware for their device.
      This also makes it possible to use automated scripts to fetch and extract the right
      firmware for the driver. (the script will grep the .ko for the "Firmware-ID: xxx" string.
      While the driver might still support other versions of the firmware for backward
      compatibility, this will always print out the officially supported version, which
      people _should_ use.
      Signed-off-by: NMichael Buesch <mb@bu3sch.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      26bc783f
  12. 06 2月, 2008 1 次提交
  13. 29 1月, 2008 13 次提交
  14. 09 1月, 2008 1 次提交
  15. 11 10月, 2007 3 次提交
    • M
      [B43]: RF-kill support · 8e9f7529
      Michael Buesch 提交于
      This adds full support for the RFKILL button and
      the RFKILL LED trigger.
      Signed-off-by: NMichael Buesch <mb@bu3sch.de>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      8e9f7529
    • M
      [B43]: LED triggers support · 21954c36
      Michael Buesch 提交于
      Drive the LEDs through the generic LED triggers.
      Signed-off-by: NMichael Buesch <mb@bu3sch.de>
      Cc: Larry Finger <larry.finger@lwfinger.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      21954c36
    • J
      [PATCH] mac80211: revamp interface and filter configuration · 4150c572
      Johannes Berg 提交于
      Drivers are currently supposed to keep track of monitor
      interfaces if they allow so-called "hard" monitor, and
      they are also supposed to keep track of multicast etc.
      
      This patch changes that, replaces the set_multicast_list()
      callback with a new configure_filter() callback that takes
      filter flags (FIF_*) instead of interface flags (IFF_*).
      For a driver, this means it should open the filter as much
      as necessary to get all frames requested by the filter flags.
      Accordingly, the filter flags are named "positively", e.g.
      FIF_ALLMULTI.
      
      Multicast filtering is a bit special in that drivers that
      have no multicast address filters need to allow multicast
      frames through when either the FIF_ALLMULTI flag is set or
      when the mc_count value is positive.
      
      At the same time, drivers are no longer notified about
      monitor interfaces at all, this means they now need to
      implement the start() and stop() callbacks and the new
      change_filter_flags() callback. Also, the start()/stop()
      ordering changed, start() is now called *before* any
      add_interface() as it really should be, and stop() after
      any remove_interface().
      
      The patch also changes the behaviour of setting the bssid
      to multicast for scanning when IEEE80211_HW_NO_PROBE_FILTERING
      is set; the IEEE80211_HW_NO_PROBE_FILTERING flag is removed
      and the filter flag FIF_BCN_PRBRESP_PROMISC introduced.
      This is a lot more efficient for hardware like b43 that
      supports it and other hardware can still set the BSSID
      to all-ones.
      
      Driver modifications by Johannes Berg (b43 & iwlwifi), Michael Wu
      (rtl8187, adm8211, and p54), Larry Finger (b43legacy), and
      Ivo van Doorn (rt2x00).
      Signed-off-by: NJohannes Berg <johannes@sipsolutions.net>
      Signed-off-by: NMichael Wu <flamingice@sourmilk.net>
      Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
      Signed-off-by: NIvo van Doorn <IvDoorn@gmail.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      4150c572