1. 10 1月, 2011 2 次提交
  2. 25 12月, 2010 1 次提交
  3. 11 12月, 2010 2 次提交
  4. 01 10月, 2010 1 次提交
  5. 23 9月, 2010 6 次提交
  6. 30 6月, 2010 1 次提交
  7. 24 6月, 2010 1 次提交
  8. 19 6月, 2010 6 次提交
  9. 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
  10. 13 5月, 2010 6 次提交
  11. 06 5月, 2010 2 次提交
  12. 31 3月, 2010 1 次提交
  13. 06 3月, 2010 1 次提交
  14. 14 1月, 2010 3 次提交
  15. 08 1月, 2010 1 次提交
  16. 09 12月, 2009 1 次提交
  17. 03 12月, 2009 1 次提交
  18. 02 12月, 2009 3 次提交