28 Jan, 2015

1 commit


11 Dec, 2013

1 commit

  • 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 so that we do not have to keep
    updating the header comments anytime the address changes.

    CC: linux-wireless@vger.kernel.org
    CC: Lauro Ramos Venancio
    CC: Aloisio Almeida Jr
    CC: Samuel Ortiz
    Signed-off-by: Jeff Kirsher
    Signed-off-by: John W. Linville

    Jeff Kirsher
     

10 Jan, 2013

1 commit


03 Oct, 2012

1 commit

  • The network merge brought in a few users of functions that got
    deprecated by the workqueue cleanups: the 'system_nrt_wq' is now the
    same as the regular system_wq, since all workqueues are now non-
    reentrant.

    Similarly, remove one use of flush_work_sync() - the regular
    flush_work() has become synchronous, and the "_sync()" version is thus
    deprecated as being superfluous.

    Signed-off-by: Linus Torvalds

    Linus Torvalds
     

25 Sep, 2012

2 commits

  • Make it match the data_exchange_cb_t so that it can be used directly in
    the implementation of an asynchronous hci_transceive

    Signed-off-by: Eric Lapuyade
    Signed-off-by: Samuel Ortiz

    Eric Lapuyade
     
  • NFC is using a number of custom ordered workqueues w/ WQ_MEM_RECLAIM.
    WQ_MEM_RECLAIM is unnecessary unless NFC is gonna be used as transport
    for storage device, and all use cases match one work item to one
    ordered workqueue - IOW, there's no actual ordering going on at all
    and using system_nrt_wq gives the same behavior.

    There's nothing to be gained by using custom workqueues. Use
    system_nrt_wq instead and drop all the custom ones.

    Signed-off-by: Tejun Heo
    Signed-off-by: Samuel Ortiz

    Tejun Heo
     

10 Jul, 2012

1 commit


13 Apr, 2012

1 commit

  • This is an implementation of ETSI TS 102 622 specification.
    Many NFC chipsets use HCI as the host target protocol on top of a
    serial link like i2c.

    Signed-off-by: Eric Lapuyade
    Signed-off-by: Samuel Ortiz
    Signed-off-by: John W. Linville

    Eric Lapuyade