1. 08 9月, 2012 1 次提交
  2. 28 6月, 2012 6 次提交
  3. 23 6月, 2012 1 次提交
  4. 21 6月, 2012 1 次提交
  5. 14 6月, 2012 1 次提交
  6. 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
  7. 16 5月, 2012 8 次提交
  8. 09 5月, 2012 3 次提交
  9. 03 5月, 2012 1 次提交
  10. 28 4月, 2012 1 次提交
  11. 14 4月, 2012 1 次提交
  12. 23 2月, 2012 4 次提交
  13. 13 2月, 2012 1 次提交
  14. 25 1月, 2012 5 次提交
  15. 11 1月, 2012 1 次提交
  16. 20 12月, 2011 4 次提交