1. 23 4月, 2014 1 次提交
  2. 15 3月, 2014 2 次提交
  3. 07 3月, 2014 1 次提交
  4. 01 3月, 2014 1 次提交
  5. 13 2月, 2014 3 次提交
  6. 27 12月, 2013 1 次提交
  7. 27 8月, 2013 2 次提交
  8. 02 4月, 2013 1 次提交
  9. 19 2月, 2013 1 次提交
  10. 05 2月, 2013 1 次提交
  11. 02 2月, 2013 1 次提交
  12. 08 1月, 2013 1 次提交
  13. 12 9月, 2012 2 次提交
  14. 07 8月, 2012 1 次提交
  15. 07 6月, 2012 1 次提交
    • J
      wireless: Remove casts to same type · 2c208890
      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
      
      Neatened the mwifiex_deauthenticate_infra function which
      was doing odd things with array pointers and not using
      is_zero_ether_addr.
      Signed-off-by: NJoe Perches <joe@perches.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      2c208890
  16. 10 4月, 2012 1 次提交
  17. 15 3月, 2012 1 次提交
  18. 14 3月, 2012 1 次提交
  19. 23 6月, 2011 1 次提交
  20. 06 5月, 2011 1 次提交
  21. 29 4月, 2011 1 次提交
  22. 20 4月, 2011 1 次提交
  23. 15 4月, 2011 3 次提交
  24. 05 4月, 2011 3 次提交
  25. 31 3月, 2011 1 次提交