1. 08 11月, 2011 2 次提交
  2. 03 11月, 2011 1 次提交
  3. 01 11月, 2011 3 次提交
  4. 15 10月, 2011 2 次提交
  5. 12 10月, 2011 1 次提交
  6. 04 10月, 2011 1 次提交
    • E
      mac80211: pass vif param to conf_tx() callback · 8a3a3c85
      Eliad Peller 提交于
      tx params should be configured per interface.
      add ieee80211_vif param to the conf_tx callback,
      and change all the drivers that use this callback.
      
      The following spatch was used:
      @rule1@
      struct ieee80211_ops ops;
      identifier conf_tx_op;
      @@
      	ops.conf_tx = conf_tx_op;
      
      @rule2@
      identifier rule1.conf_tx_op;
      identifier hw, queue, params;
      @@
      	conf_tx_op (
      -		struct ieee80211_hw *hw,
      +		struct ieee80211_hw *hw, struct ieee80211_vif *vif,
      		u16 queue,
      		const struct ieee80211_tx_queue_params *params) {...}
      Signed-off-by: NEliad Peller <eliad@wizery.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      8a3a3c85
  7. 28 9月, 2011 4 次提交
  8. 20 9月, 2011 7 次提交
  9. 15 9月, 2011 8 次提交
  10. 14 9月, 2011 10 次提交
  11. 30 8月, 2011 1 次提交
    • L
      b43: Fix swatch warning · 9a53bf54
      Larry Finger 提交于
      Swatch reports the following warning for main.c:
      
        CHECK   drivers/net/wireless/b43/main.c
      drivers/net/wireless/b43/main.c +4115 b43_wireless_core_stop(7) warn: variable dereferenced before check 'dev'
      
      After analysis, this is not a bug, but a false warning. Nonetheless,
      a cleanup is in order to prevent some future janitor proposing
      the wrong fix, as I did in my original patch.
      Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      9a53bf54