<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>7d0911c0 - NFC Digital: Add initiator NFC-DEP support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#7d0911c0</link>
        <description>NFC Digital: Add initiator NFC-DEP supportThis adds support for NFC-DEP protocol in initiator mode for NFC-A andNFC-F technologies.When a target is detected, the process flow is as follow:For NFC-A technology:1 - The digital stack receives a SEL_RES as the reply of the SEL_REQ    command.2   - If b7 of SEL_RES is set, the peer device is configure for NFC-DEP      protocol. NFC core is notified through nfc_targets_found().      Execution continues at step 4.3   - Otherwise, it&apos;s a tag and the NFC core is notified. Detection      ends.4 - The digital stacks sends an ATR_REQ command containing a randomly    generated NFCID3 and the general bytes obtained from the LLCP layer    of NFC core.For NFC-F technology:1 - The digital stack receives a SENSF_RES as the reply of the    SENSF_REQ command.2   - If B1 and B2 of NFCID2 are 0x01 and 0xFE respectively, the peer      device is configured for NFC-DEP protocol. NFC core is notified      through nfc_targets_found(). Execution continues at step 4.3   - Otherwise it&apos;s a type 3 tag. NFC core is notified. Detection      ends.4 - The digital stacks sends an ATR_REQ command containing the NFC-F    NFCID2 as NFCID3 and the general bytes obtained from the LLCP layer    of NFC core.For both technologies:5 - The digital stacks receives the ATR_RES response containing the    NFCID3 and the general bytes of the peer device.6 - The digital stack notifies NFC core that the DEP link is up through    nfc_dep_link_up().7 - The NFC core performs data exchange through tm_transceive().8 - The digital stack sends a DEP_REQ command containing an I PDU with    the data from NFC core.9 - The digital stack receives a DEP_RES command10  - If the DEP_RES response contains a supervisor PDU with timeout      extension request (RTOX) the digital stack sends a DEP_REQ      command containing a supervisor PDU acknowledging the RTOX      request. The execution continues at step 9.11  - If the DEP_RES response contains an I PDU, the response data is      passed back to NFC core through the response callback. The      execution continues at step 8.Signed-off-by: Thierry Escande &lt;thierry.escande@linux.intel.com&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Thu, 19 Sep 2013 15:55:29 +0000</pubDate>
        <dc:creator>Thierry Escande &lt;thierry.escande@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>59ee2361 - NFC Digital: Implement driver commands mechanism</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#59ee2361</link>
        <description>NFC Digital: Implement driver commands mechanismThis implements the mechanism used to send commands to the driver ininitiator mode through in_send_cmd().Commands are serialized and sent to the driver by using a work itemon the system workqueue. Responses are handled asynchronously byanother work item. Once the digital stack receives the response throughthe command_complete callback, the next command is sent to the driver.This also implements the polling mechanism. It&apos;s handled by a work itemcycling on all supported protocols. The start poll command for a givenprotocol is sent to the driver using the mechanism described above.The process continues until a peer is discovered or stop_poll iscalled. This patch implements the poll function for NFC-A that sends aSENS_REQ command and waits for the SENS_RES response.Signed-off-by: Thierry Escande &lt;thierry.escande@linux.intel.com&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Thu, 19 Sep 2013 15:55:26 +0000</pubDate>
        <dc:creator>Thierry Escande &lt;thierry.escande@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>4b10884e - NFC: Digital Protocol stack implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#4b10884e</link>
        <description>NFC: Digital Protocol stack implementationThis is the initial commit of the NFC Digital Protocol stackimplementation.It offers an interface for devices that don&apos;t have an embedded NFCDigital protocol stack. The driver instantiates the digital stack bycalling nfc_digital_allocate_device(). Within the nfc_digital_opsstructure, the driver specifies a set of function pointers for driveroperations. These functions must be implemented by the driver and are:in_configure_hw:Hardware configuration for RF technology and communication framing ininitiator mode. This is a synchronous function.in_send_cmd:Initiator mode data exchange using RF technology and framing previouslyset with in_configure_hw. The peer response is returned throughcallback cb. If an io error occurs or the peer didn&apos;t reply within thespecified timeout (ms), the error code is passed back through the resppointer. This is an asynchronous function.tg_configure_hw:Hardware configuration for RF technology and communication framing intarget mode. This is a synchronous function.tg_send_cmd:Target mode data exchange using RF technology and framing previouslyset with tg_configure_hw. The peer next command is returned throughcallback cb. If an io error occurs or the peer didn&apos;t reply within thespecified timeout (ms), the error code is passed back through the resppointer. This is an asynchronous function.tg_listen:Put the device in listen mode waiting for data from the peer device.This is an asynchronous function.tg_listen_mdaa:If supported, put the device in automatic listen mode with modedetection and automatic anti-collision. In this mode, the deviceautomatically detects the RF technology and executes theanti-collision detection using the command responses specified inmdaa_params. The mdaa_params structure contains SENS_RES, NFCID1, andSEL_RES for 106A RF tech. NFCID2 and system code (sc) for 212F and424F. The driver returns the NFC-DEP ATR_REQ command through cb. Thedigital stack deducts the RF tech by analyzing the SoD of the framecontaining the ATR_REQ command. This is an asynchronous function.switch_rf:Turns device radio on or off. The stack does not call explicitlyswitch_rf to turn the radio on. A call to in|tg_configure_hw must turnthe device radio on.abort_cmd:Discard the last sent command.Then the driver registers itself against the digital stack by usingnfc_digital_register_device() which in turn registers the digital stackagainst the NFC core layer. The digital stack implements common NFCoperations like dev_up(), dev_down(), start_poll(), stop_poll(), etc.This patch is only a skeleton and NFC operations are just stubs.Signed-off-by: Thierry Escande &lt;thierry.escande@linux.intel.com&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Thu, 19 Sep 2013 15:55:25 +0000</pubDate>
        <dc:creator>Thierry Escande &lt;thierry.escande@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7c055881 - NFC: Remove commented out LLCP related Makefile line</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#7c055881</link>
        <description>NFC: Remove commented out LLCP related Makefile lineThe Kconfig symbol NFC_LLCP was removed in commit 30cc458765 (&quot;NFC: MoveLLCP code to the NFC top level diirectory&quot;). But the reference to itsmacro in this Makefile was only commented out. Remove it now.Signed-off-by: Paul Bolle &lt;pebolle@tiscali.nl&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Sun, 12 May 2013 21:21:24 +0000</pubDate>
        <dc:creator>Paul Bolle &lt;pebolle@tiscali.nl&gt;</dc:creator>
    </item>
<item>
        <title>30cc4587 - NFC: Move LLCP code to the NFC top level diirectory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#30cc4587</link>
        <description>NFC: Move LLCP code to the NFC top level diirectoryAnd stop making it optional. LLCP is a fundamental part of the NFCspecifications and making it optional does not make much sense.Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Fri, 26 Apr 2013 09:49:40 +0000</pubDate>
        <dc:creator>Samuel Ortiz &lt;sameo@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8b8d2e08 - NFC: HCI support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#8b8d2e08</link>
        <description>NFC: HCI supportThis is an implementation of ETSI TS 102 622 specification.Many NFC chipsets use HCI as the host &lt;-&gt; target protocol on top of aserial link like i2c.Signed-off-by: Eric Lapuyade &lt;eric.lapuyade@intel.com&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Tue, 10 Apr 2012 17:43:06 +0000</pubDate>
        <dc:creator>Eric Lapuyade &lt;eric.lapuyade@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d646960f - NFC: Initial LLCP support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#d646960f</link>
        <description>NFC: Initial LLCP supportThis patch is an initial implementation for the NFC Logical Link Controlprotocol. It&apos;s also known as NFC peer to peer mode.This is a basic implementation as it lacks SDP (services DiscoveryProtocol), frames aggregation support, and frame rejecion parsing.Follow up patches will implement those missing features.This code has been tested against a Nexus S phone implementing LLCP 1.0.Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Wed, 14 Dec 2011 15:43:12 +0000</pubDate>
        <dc:creator>Samuel Ortiz &lt;sameo@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>6a2968aa - NFC: basic NCI protocol implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#6a2968aa</link>
        <description>NFC: basic NCI protocol implementationThe NFC Controller Interface (NCI) is a standardcommunication protocol between an NFC Controller (NFCC)and a Device Host (DH), defined by the NFC Forum.Signed-off-by: Ilan Elias &lt;ilane@ti.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Sun, 18 Sep 2011 08:19:35 +0000</pubDate>
        <dc:creator>Ilan Elias &lt;ilane@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>23b7869c - NFC: add the NFC socket raw protocol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#23b7869c</link>
        <description>NFC: add the NFC socket raw protocolThis socket protocol is used to perform data exchange with NFCtargets.Signed-off-by: Lauro Ramos Venancio &lt;lauro.venancio@openbossa.org&gt;Signed-off-by: Aloisio Almeida Jr &lt;aloisio.almeida@openbossa.org&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Fri, 01 Jul 2011 22:31:36 +0000</pubDate>
        <dc:creator>Lauro Ramos Venancio &lt;lauro.venancio@openbossa.org&gt;</dc:creator>
    </item>
<item>
        <title>c7fe3b52 - NFC: add NFC socket family</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#c7fe3b52</link>
        <description>NFC: add NFC socket familySigned-off-by: Lauro Ramos Venancio &lt;lauro.venancio@openbossa.org&gt;Signed-off-by: Aloisio Almeida Jr &lt;aloisio.almeida@openbossa.org&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Fri, 01 Jul 2011 22:31:35 +0000</pubDate>
        <dc:creator>Aloisio Almeida Jr &lt;aloisio.almeida@openbossa.org&gt;</dc:creator>
    </item>
<item>
        <title>4d12b8b1 - NFC: add nfc generic netlink interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#4d12b8b1</link>
        <description>NFC: add nfc generic netlink interfaceThe NFC generic netlink interface exports the NFC control operationsto the user space.Signed-off-by: Lauro Ramos Venancio &lt;lauro.venancio@openbossa.org&gt;Signed-off-by: Aloisio Almeida Jr &lt;aloisio.almeida@openbossa.org&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;Reviewed-by: Johannes Berg &lt;johannes@sipsolutions.net&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Fri, 01 Jul 2011 22:31:34 +0000</pubDate>
        <dc:creator>Lauro Ramos Venancio &lt;lauro.venancio@openbossa.org&gt;</dc:creator>
    </item>
<item>
        <title>3e256b8f - NFC: add nfc subsystem core</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/net/nfc/Makefile#3e256b8f</link>
        <description>NFC: add nfc subsystem coreThe NFC subsystem core is responsible for providing the device driverinterface. It is also responsible for providing an interface to the controloperations and data exchange.Signed-off-by: Lauro Ramos Venancio &lt;lauro.venancio@openbossa.org&gt;Signed-off-by: Aloisio Almeida Jr &lt;aloisio.almeida@openbossa.org&gt;Signed-off-by: Samuel Ortiz &lt;sameo@linux.intel.com&gt;Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;

            List of files:
            /linux-6.15/net/nfc/Makefile</description>
        <pubDate>Fri, 01 Jul 2011 22:31:33 +0000</pubDate>
        <dc:creator>Lauro Ramos Venancio &lt;lauro.venancio@openbossa.org&gt;</dc:creator>
    </item>
</channel>
</rss>
