1. 22 11月, 2011 2 次提交
  2. 09 11月, 2011 1 次提交
  3. 15 10月, 2011 5 次提交
  4. 12 10月, 2011 1 次提交
  5. 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
  6. 01 10月, 2011 2 次提交
  7. 28 9月, 2011 1 次提交
  8. 27 9月, 2011 1 次提交
  9. 21 9月, 2011 4 次提交
  10. 15 9月, 2011 1 次提交
  11. 14 9月, 2011 2 次提交
  12. 25 8月, 2011 5 次提交
  13. 23 8月, 2011 1 次提交
  14. 10 8月, 2011 3 次提交
  15. 02 8月, 2011 1 次提交
    • L
      rtlwifi: Fix kernel oops on ARM SOC · b6b67df3
      Larry Finger 提交于
      This driver uses information from the self member of the pci_bus struct to
      get information regarding the bridge to which the PCIe device is attached.
      Unfortunately, this member is not established on all architectures, which
      leads to a kernel oops.
      
      Skipping the entire block that uses the self member to determine the bridge
      vendor will only affect RTL8192DE devices as that driver sets the ASPM support
      flag differently when the bridge vendor is Intel. If the self member is
      available, there is no functional change.
      
      This patch fixes Bugzilla No. 40212.
      Reported-by: NHubert Liao <liao.hubertt@gmail.com>
      Signed-off-by: NLarry Finger <Larry.Finger@lwfinger.net>
      Cc: Stable <stable@kernel.org> [back to 2.6.38]
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      b6b67df3
  16. 22 7月, 2011 1 次提交
  17. 21 7月, 2011 2 次提交
  18. 12 7月, 2011 1 次提交
  19. 06 7月, 2011 5 次提交