1. 26 8月, 2010 1 次提交
  2. 25 8月, 2010 2 次提交
  3. 08 6月, 2010 2 次提交
  4. 03 6月, 2010 3 次提交
  5. 14 5月, 2010 1 次提交
    • J
      drivers/net: Remove unnecessary returns from void function()s · a4b77097
      Joe Perches 提交于
      This patch removes from drivers/net/ all the unnecessary
      return; statements that precede the last closing brace of
      void functions.
      
      It does not remove the returns that are immediately
      preceded by a label as gcc doesn't like that.
      
      It also does not remove null void functions with return.
      
      Done via:
      $ grep -rP --include=*.[ch] -l "return;\n}" net/ | \
        xargs perl -i -e 'local $/ ; while (<>) { s/\n[ \t\n]+return;\n}/\n}/g; print; }'
      
      with some cleanups by hand.
      
      Compile tested x86 allmodconfig only.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a4b77097
  6. 11 3月, 2010 3 次提交
  7. 10 3月, 2010 2 次提交
  8. 23 1月, 2010 1 次提交
  9. 13 1月, 2010 2 次提交
  10. 28 10月, 2009 1 次提交
  11. 08 10月, 2009 5 次提交
  12. 14 8月, 2009 1 次提交
  13. 11 7月, 2009 1 次提交
  14. 11 6月, 2009 1 次提交
    • T
      ath5k: added cfg80211 based rfkill support · e6a3b616
      Tobias Doerffel 提交于
      This patch introduces initial rfkill support for the ath5k driver
      based on rfkill support in the cfg80211 framework.
      All rfkill related code is separated into newly created rfkill.c.
      
      Changes to existing code are minimal:
      
      * added a new data structure ath5k_rfkill to the ath5k_softc structure
      * inserted calls to HW rfkill init/deinit routines
      * ath5k_intr() has been extended to handle AR5K_INT_GPIO interrupts
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      e6a3b616
  15. 07 5月, 2009 4 次提交
  16. 23 4月, 2009 2 次提交
  17. 14 4月, 2009 1 次提交
  18. 28 3月, 2009 1 次提交
  19. 17 3月, 2009 1 次提交
  20. 14 2月, 2009 4 次提交
  21. 26 11月, 2008 1 次提交