1. 25 2月, 2012 2 次提交
  2. 14 2月, 2012 3 次提交
  3. 10 2月, 2012 2 次提交
  4. 07 2月, 2012 1 次提交
  5. 27 1月, 2012 1 次提交
  6. 26 1月, 2012 1 次提交
  7. 05 10月, 2011 1 次提交
  8. 27 8月, 2011 1 次提交
  9. 11 8月, 2011 1 次提交
  10. 13 7月, 2011 1 次提交
  11. 27 4月, 2011 1 次提交
  12. 14 4月, 2011 2 次提交
  13. 14 1月, 2011 2 次提交
  14. 10 1月, 2011 2 次提交
  15. 11 12月, 2010 3 次提交
  16. 17 11月, 2010 2 次提交
  17. 02 11月, 2010 1 次提交
  18. 29 10月, 2010 1 次提交
  19. 01 10月, 2010 1 次提交
  20. 20 8月, 2010 2 次提交
  21. 19 6月, 2010 1 次提交
  22. 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
  23. 13 5月, 2010 1 次提交
    • B
      e1000e: fix checks for manageability enabled and management pass-through · a65a4a0d
      Bruce Allan 提交于
      The mac->arc_subsystem was being incorrectly used to flag whether or not
      manageability was enabled when it should only be used to state whether the
      ARC (Host interface) subsystem is available on a particular MAC _and_ only
      valid when any manageability is enabled. The ARC subsystem is currently
      only available on 80003es2lan and 82573 parts supported by the driver.
      
      A new flag, has_fwsm, is introduced to be used when checking if
      manageability is enabled but only on parts that acutally have an FWSM
      register. While the above parts have an FWSM register, there are other
      parts that have FWSM but do not have support for the ARC subsystem,
      namely 82571/2 and ICHx/PCH.
      
      And then there are parts that have manageability, but do not have either
      FWSM register or support for the ARC subsystem - these are 82574 and 82583.
      
      For 80003es2lan, 82571/2/3 and ICH/PCH parts, this patch makes no
      functional changes, it only corrects the usage of the manageability flags.
      For 82574 and 82583, it fixes the incorrect accesses of the non-existent
      FWSM register and ARC subsystem as well as corrects the check for
      management pass-through.
      Signed-off-by: NBruce Allan <bruce.w.allan@intel.com>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      a65a4a0d
  24. 06 5月, 2010 1 次提交
  25. 28 4月, 2010 1 次提交
  26. 31 3月, 2010 1 次提交
  27. 09 2月, 2010 1 次提交
  28. 14 1月, 2010 2 次提交