1. 07 10月, 2011 1 次提交
  2. 31 8月, 2011 1 次提交
  3. 18 8月, 2011 1 次提交
  4. 12 8月, 2011 1 次提交
  5. 22 7月, 2011 1 次提交
  6. 22 6月, 2011 1 次提交
  7. 17 4月, 2011 1 次提交
  8. 08 4月, 2011 1 次提交
  9. 31 3月, 2011 1 次提交
  10. 01 3月, 2011 1 次提交
  11. 24 2月, 2011 1 次提交
  12. 21 1月, 2011 1 次提交
  13. 17 12月, 2010 1 次提交
  14. 21 10月, 2010 1 次提交
  15. 03 9月, 2010 1 次提交
  16. 26 8月, 2010 1 次提交
  17. 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
  18. 15 4月, 2010 1 次提交
  19. 04 4月, 2010 1 次提交
    • J
      net: convert multicast list to list_head · 22bedad3
      Jiri Pirko 提交于
      Converts the list and the core manipulating with it to be the same as uc_list.
      
      +uses two functions for adding/removing mc address (normal and "global"
       variant) instead of a function parameter.
      +removes dev_mcast.c completely.
      +exposes netdev_hw_addr_list_* macros along with __hw_addr_* functions for
       manipulation with lists on a sandbox (used in bonding and 80211 drivers)
      Signed-off-by: NJiri Pirko <jpirko@redhat.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      22bedad3
  20. 31 3月, 2010 1 次提交
  21. 23 2月, 2010 1 次提交
  22. 13 2月, 2010 1 次提交
    • J
      drivers/net/atl1e: Use netdev_printk helpers · ba211e3e
      Joe Perches 提交于
      Logging messages sometimes had duplicated "ATL1E" output.
      
      For instance:
      ATL1E 0000:03:00.0: ATL1E: eth0 NIC Link is Up<100 Mbps Full Duplex>
      is now:
      ATL1E 0000:03:00.0: eth0: NIC Link is Up <100 Mbps Full Duplex>
      
      Add some consistency to logging messages
      Add some missing \n's to logging messages
      Miscellaneous typo spelling corrections
      Change atl1e_validate_option argument from pdev to adapter
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      ba211e3e
  23. 08 1月, 2010 1 次提交
  24. 07 1月, 2010 1 次提交
  25. 02 12月, 2009 1 次提交
  26. 19 11月, 2009 1 次提交
  27. 14 10月, 2009 1 次提交
  28. 18 9月, 2009 1 次提交
  29. 04 9月, 2009 1 次提交
  30. 01 9月, 2009 1 次提交
  31. 02 8月, 2009 1 次提交
  32. 12 6月, 2009 1 次提交
  33. 30 5月, 2009 1 次提交
  34. 29 5月, 2009 1 次提交
  35. 26 5月, 2009 1 次提交
  36. 14 4月, 2009 1 次提交
  37. 07 4月, 2009 1 次提交
  38. 22 1月, 2009 1 次提交
  39. 27 12月, 2008 1 次提交
  40. 23 12月, 2008 1 次提交