1. 25 10月, 2012 1 次提交
  2. 09 10月, 2012 3 次提交
  3. 29 9月, 2012 1 次提交
  4. 08 9月, 2012 1 次提交
  5. 11 8月, 2012 1 次提交
  6. 07 8月, 2012 1 次提交
  7. 29 6月, 2012 1 次提交
    • A
      mwifiex: wakeup main thread to handle command queued · 1a1fb970
      Amitkumar Karwar 提交于
      We miss to wakeup main thread after adding command to cmd pending
      queue at follwing places. These commands are handled later when
      main thread is woken up for handling an interrupt for sleep event
      from firmware. This adds worst case delay of 50msec.
      
      1) We don't wakeup main thread when asynchronous command is added
      to cmd pending queue. Move queue_work() call from
      mwifiex_wait_queue_complete() to mwifiex_send_cmd_async() to wakeup
      main thread for sync as well as async commands.
      
      2) Scan operation is triggered due to following reasons
         a) request from user (ex. "iw scan" command)
         b) Scan performed by driver internally.
         In first case main thread is woken up when first scan command is
      queued in cmd pending queue (we don't need to wakeup main thread for
      subsequent scan commands, because they are queued in scan command
      response handler), but it is not done for second case. queue_work()
      is moved inside mwifiex_scan_networks() to handle both the cases.
      Signed-off-by: NAmitkumar Karwar <akarwar@marvell.com>
      Signed-off-by: NAvinash Patil <patila@marvell.com>
      Signed-off-by: NBing Zhao <bzhao@marvell.com>
      Signed-off-by: NJohn W. Linville <linville@tuxdriver.com>
      1a1fb970
  8. 12 6月, 2012 2 次提交
  9. 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
  10. 18 4月, 2012 2 次提交
  11. 10 4月, 2012 2 次提交
  12. 15 3月, 2012 1 次提交
  13. 14 3月, 2012 1 次提交
  14. 06 3月, 2012 2 次提交
  15. 01 3月, 2012 1 次提交
  16. 07 2月, 2012 1 次提交
  17. 28 1月, 2012 1 次提交
  18. 25 1月, 2012 1 次提交
  19. 20 12月, 2011 1 次提交
  20. 15 12月, 2011 1 次提交
  21. 12 11月, 2011 3 次提交
  22. 08 11月, 2011 1 次提交
  23. 15 10月, 2011 2 次提交
  24. 28 9月, 2011 2 次提交
  25. 14 9月, 2011 1 次提交
  26. 25 8月, 2011 1 次提交
  27. 13 8月, 2011 1 次提交
  28. 09 8月, 2011 1 次提交
  29. 23 6月, 2011 1 次提交
  30. 11 5月, 2011 1 次提交