1. 02 8月, 2016 1 次提交
  2. 18 7月, 2016 2 次提交
  3. 17 5月, 2016 2 次提交
  4. 09 5月, 2016 1 次提交
  5. 05 5月, 2016 1 次提交
  6. 04 5月, 2016 1 次提交
  7. 27 4月, 2015 1 次提交
  8. 06 12月, 2014 1 次提交
  9. 13 11月, 2014 1 次提交
  10. 28 10月, 2014 1 次提交
  11. 25 10月, 2014 3 次提交
  12. 06 10月, 2014 1 次提交
  13. 01 10月, 2014 5 次提交
  14. 14 5月, 2014 1 次提交
  15. 17 1月, 2014 1 次提交
  16. 10 12月, 2013 1 次提交
  17. 07 12月, 2013 1 次提交
    • J
      ethernet: Fix FSF address in file headers · 0ab75ae8
      Jeff Kirsher 提交于
      Several files refer to an old address for the Free Software Foundation
      in the file header comment.  Resolve by replacing the address with
      the URL <http://www.gnu.org/licenses/> so that we do not have to keep
      updating the header comments anytime the address changes.
      
      CC: Santosh Raspatur <santosh@chelsio.com>
      CC: Dimitris Michailidis <dm@chelsio.com>
      CC: Michael Chan <mchan@broadcom.com>
      CC: Santiago Leon <santil@linux.vnet.ibm.com>
      CC: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
      CC: Olof Johansson <olof@lixom.net>
      CC: Manish Chopra <manish.chopra@qlogic.com>
      CC: Sony Chacko <sony.chacko@qlogic.com>
      CC: Rajesh Borundia <rajesh.borundia@qlogic.com>
      CC: Nicolas Pitre <nico@fluxnic.net>
      CC: Steve Glendinning <steve.glendinning@shawell.net>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      0ab75ae8
  18. 16 9月, 2013 1 次提交
  19. 31 8月, 2013 1 次提交
  20. 30 8月, 2013 1 次提交
  21. 20 6月, 2013 1 次提交
  22. 18 6月, 2013 1 次提交
  23. 28 5月, 2013 1 次提交
  24. 18 3月, 2013 1 次提交
  25. 15 3月, 2013 1 次提交
  26. 15 1月, 2013 1 次提交
  27. 07 1月, 2013 1 次提交
  28. 04 1月, 2013 1 次提交
  29. 01 11月, 2012 1 次提交
  30. 07 6月, 2012 1 次提交
    • J
      ethernet: Remove casts to same type · 64699336
      Joe Perches 提交于
      Adding casts of objects to the same type is unnecessary
      and confusing for a human reader.
      
      For example, this cast:
      
              int y;
              int *p = (int *)&y;
      
      I used the coccinelle script below to find and remove these
      unnecessary casts.  I manually removed the conversions this
      script produces of casts with __force, __iomem and __user.
      
      @@
      type T;
      T *p;
      @@
      
      -       (T *)p
      +       p
      
      A function in atl1e_main.c was passed a const pointer
      when it actually modified elements of the structure.
      
      Change the argument to a non-const pointer.
      
      A function in stmmac needed a __force to avoid a sparse
      warning.  Added it.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      64699336
  31. 04 4月, 2012 1 次提交
  32. 29 3月, 2012 1 次提交