1. 09 4月, 2013 1 次提交
  2. 19 1月, 2013 1 次提交
  3. 04 1月, 2013 1 次提交
  4. 08 12月, 2012 1 次提交
  5. 04 12月, 2012 1 次提交
  6. 20 11月, 2012 1 次提交
  7. 11 7月, 2012 1 次提交
  8. 11 5月, 2012 1 次提交
    • J
      drivers/net: Convert compare_ether_addr to ether_addr_equal · 2e42e474
      Joe Perches 提交于
      Use the new bool function ether_addr_equal to add
      some clarity and reduce the likelihood for misuse
      of compare_ether_addr for sorting.
      
      Done via cocci script:
      
      $ cat compare_ether_addr.cocci
      @@
      expression a,b;
      @@
      -	!compare_ether_addr(a, b)
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	compare_ether_addr(a, b)
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!ether_addr_equal(a, b) == 0
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!ether_addr_equal(a, b) != 0
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	ether_addr_equal(a, b) == 0
      +	!ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	ether_addr_equal(a, b) != 0
      +	ether_addr_equal(a, b)
      
      @@
      expression a,b;
      @@
      -	!!ether_addr_equal(a, b)
      +	ether_addr_equal(a, b)
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      2e42e474
  9. 14 4月, 2012 1 次提交
  10. 02 4月, 2012 1 次提交
  11. 08 3月, 2012 1 次提交
  12. 02 3月, 2012 1 次提交
  13. 25 2月, 2012 1 次提交
  14. 20 2月, 2012 4 次提交
  15. 18 2月, 2012 1 次提交
  16. 13 2月, 2012 2 次提交
  17. 05 2月, 2012 2 次提交
  18. 01 2月, 2012 2 次提交
  19. 21 1月, 2012 1 次提交
  20. 19 1月, 2012 4 次提交
  21. 09 12月, 2011 1 次提交
  22. 04 12月, 2011 1 次提交
  23. 15 11月, 2011 1 次提交
  24. 19 10月, 2011 1 次提交
  25. 07 10月, 2011 1 次提交
  26. 27 9月, 2011 3 次提交
  27. 31 8月, 2011 1 次提交
  28. 27 8月, 2011 1 次提交
    • J
      drivers/net/ethernet/*: Enabled vendor Kconfig options · 88f07484
      Jeff Kirsher 提交于
      Based on finds for Stephen Rothwell, where current defconfig's
      enable a ethernet driver and it is not compiled due to the newly
      added NET_VENDOR_* component of Kconfig.
      
      This patch enables all the "new" Kconfig options so that current
      defconfig's will continue to compile the expected drivers.  In
      addition, by enabling all the new Kconfig options does not add
      any un-expected options.
      
      CC: Stephen Rothwll <sfc@canb.auug.org.au>
      Signed-off-by: NJeff Kirsher <jeffrey.t.kirsher@intel.com>
      88f07484
  29. 18 8月, 2011 1 次提交