<?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>757f5d0b - usb: gadget: uvc: add trace of enqueued and completed requests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#757f5d0b</link>
        <description>usb: gadget: uvc: add trace of enqueued and completed requestsThis patch is adding trace events for each request that is beingenqueued into the hw and will be completed. This way it is possibleto track the fill status of the gadget hardware and find potentialissues.Signed-off-by: Michael Grzeschik &lt;m.grzeschik@pengutronix.de&gt;Link: https://lore.kernel.org/r/20240403-uvc_request_length_by_interval-v7-8-e224bb1035f0@pengutronix.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Wed, 16 Oct 2024 13:58:13 +0000</pubDate>
        <dc:creator>Michael Grzeschik &lt;m.grzeschik@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>8b645922 - usb: gadget: Add support for USB MIDI 2.0 function driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#8b645922</link>
        <description>usb: gadget: Add support for USB MIDI 2.0 function driverThis patch adds the support for USB MIDI 2.0 gadget function driver.The driver emulates a USB MIDI 2.0 interface with one or more UMPEndpoints, where each of UMP Endpoint is a pair of MIDI Endpoints forhandling MIDI 2.0 UMP packets.  When the function driver is bound, thedriver creates an ALSA card object with UMP rawmidi devices.  This isa kind of loop-back where the incoming and upcoming UMP packetsfrom/to the MIDI 2.0 UMP Endpoints are transferred as-is.  Inaddition, legacy (MIDI 1.0) rawmidi devices are created, so thatlegacy applications can work in the gadget side, too.When a USB MIDI 2.0 gadget interface appears, the connected host canuse it with the snd-usb-audio driver where MIDI 2.0 support isenabled.  Both gadget and connected hosts will have the similar UMPEndpoint and Function Block (or Group Terminal Block) information.Slight differences are the direction and UI-hint bits; it&apos;s due to thenature of gadget driver, and the input/output direction is swapped inboth sides (the input for gadget is the output for host, and viceversa).The driver supports the brand-new UMP v1.1 feature, including the UMPStream message handling for providing UMP Endpoint and Function Blockinformation as well as dealing with the MIDI protocol switch.  Thedriver responds to UMP Stream messages by itself.  OTOH, MIDI-CImessage handling isn&apos;t implemented in the kernel driver; it should beprocessed in the user-space through the loopback UMP device.As of this patch, the whole configuration is fixed, providing only onebidirectional UMP Endpoint containing a single FB/GTB with a singleUMP Group.  The configuration will be dynamically changeable in thefollowing patches.The traditional MIDI 1.0 is still provided in the altset 0 (which ismandatory per spec).  But it&apos;s only about the configuration, and noactual I/O will be running for the altset 0 as of this patch.  Theproper support MIDI 1.0 altset will follow in later patches, too.Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;Link: https://lore.kernel.org/r/20230725062206.9674-2-tiwai@suse.deSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Tue, 25 Jul 2023 06:22:00 +0000</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<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/drivers/usb/gadget/function/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/drivers/usb/gadget/function/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>0591bc23 - usb: gadget: add f_uac1 variant based on a new u_audio api</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#0591bc23</link>
        <description>usb: gadget: add f_uac1 variant based on a new u_audio apiThis patch adds a new function &apos;f_uac1&apos;(f_uac1 with virtual &quot;ALSA card&quot;) thatuses recently created u_audio API. Comparingto legacy f_uac1 function implementation itdoesn&apos;t require any real Audio codec to bepresent on the device. In f_uac1 audiostreams are simply sinked to and sourcedfrom a virtual ALSA sound card createdusing u_audio API.Legacy f_uac1 approach is to write audiosamples directly to existing ALSA soundcardf_uac1 approach is more generic/flexibleone - create an ALSA sound card thatrepresents USB Audio function and allows tobe used by userspace application thatmay choose to do whatever it wants with thedata received from the USB Host and chooseto provide whatever it wants as audio datato the USB Host.f_uac1 also has capture support (gadget-&gt;host)thanks to easy implementation via u_audio.By default, capture interface has 48000kHz/2chconfiguration, same as playback channel has.f_uac1 descriptors naming conventionuses f_uac2 driver naming convention thatmakes it more common and meaningful.Comparing to f_uac1_legacy, the f_uac1 doesn&apos;thave volume/mute functionality. This is becausethe f_uac1 volume/mute feature unit was dummyimplementation since that driver creation (2009)and never had any real volume control or mutefunctionality, so there is no any differencehere.Since f_uac1 functionality, exposedinterface to userspace (virtual ALSA card),input parameters are so different comparingto f_uac1_legacy, that there is no anyreason to keep them in the same file/module,and separate function was created.g_audio can be built using one of existingUAC functions (f_uac1, f_uac1_legacy or f_uac2)Signed-off-by: Ruslan Bilovol &lt;ruslan.bilovol@gmail.com&gt;Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Sun, 18 Jun 2017 13:23:54 +0000</pubDate>
        <dc:creator>Ruslan Bilovol &lt;ruslan.bilovol@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d355339e - usb: gadget: function: make current f_uac1 implementation legacy</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#d355339e</link>
        <description>usb: gadget: function: make current f_uac1 implementation legacyBefore introducing new f_uac1 function (with virtualALSA card) make current implementation legacy.This includes renaming of existing files, somevariables, config options and documentationSigned-off-by: Ruslan Bilovol &lt;ruslan.bilovol@gmail.com&gt;Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Sun, 18 Jun 2017 13:23:53 +0000</pubDate>
        <dc:creator>Ruslan Bilovol &lt;ruslan.bilovol@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>eb9fecb9 - usb: gadget: f_uac2: split out audio core</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#eb9fecb9</link>
        <description>usb: gadget: f_uac2: split out audio coreAbstract the peripheral side ALSA sound card code fromthe f_uac2 function into a component that can be calledby various functions, so the various flavors can be splitapart and selectively reused.Visible changes: - add uac_params structure to pass audio paramteres for   g_audio_setup - make ALSA sound card&apos;s name configurable - add [in/out]_ep_maxpsize - allocate snd_uac_chip structure during g_audio_setup - add u_audio_[start/stop]_[capture/playback] functionsSigned-off-by: Ruslan Bilovol &lt;ruslan.bilovol@gmail.com&gt;Signed-off-by: Felipe Balbi &lt;felipe.balbi@linux.intel.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Sun, 18 Jun 2017 13:23:52 +0000</pubDate>
        <dc:creator>Ruslan Bilovol &lt;ruslan.bilovol@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>dc8c46a5 - usb: gadget: f_tcm: convert to new function interface with backward compatibility</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#dc8c46a5</link>
        <description>usb: gadget: f_tcm: convert to new function interface with backward compatibilityConverting tcm to the new function interface requires convertingUSB tcm&apos;s function code and its users.This patch converts the f_tcm.c to the new function interface.The file can be now compiled into a separate module usb_f_tcm.ko.The old function interface is provided by means of preprocessor conditionaldirectives. After all users are converted, the old interface can beremoved.Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Acked-by: Sebastian Andrzej Siewior &lt;bigeasy@linutronix.de&gt;Signed-off-by: Nicholas Bellinger &lt;nab@linux-iscsi.org&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Fri, 11 Dec 2015 15:06:21 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>b26394bd - usb: gadget: f_printer: convert to new function interface with backward compatibility</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#b26394bd</link>
        <description>usb: gadget: f_printer: convert to new function interface with backward compatibilityIn order to add configfs support, a usb function must be converted to usethe new interface. This patch converts the function to the new interfaceand provides backward compatiblity layer, which can be removed afterall its users are converted to use the new interface.Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Tue, 03 Mar 2015 09:52:28 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>46919a23 - usb: gadget: uvc: configfs support in uvc function</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#46919a23</link>
        <description>usb: gadget: uvc: configfs support in uvc functionAdd support for using the uvc function as a component of USB gadgets composedwith configfs.Acked-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Wed, 10 Dec 2014 11:34:02 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>cb382536 - usb: gadget: f_hid: convert to new function interface with backward compatibility</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#cb382536</link>
        <description>usb: gadget: f_hid: convert to new function interface with backward compatibilityConverting hid to the new function interface requires convertingthe USB hid&apos;s function code and its users.This patch converts the f_hid.c to the new function interface.The file can now be compiled into a separate usb_f_hid.ko module.The old function interface is provided by means of a preprocessorconditional directives. After all users are converted, the old interfacecan be removed.Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Thu, 06 Nov 2014 10:11:59 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>b85e9de9 - usb: gadget: f_midi: convert to new function interface with backward compatibility</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#b85e9de9</link>
        <description>usb: gadget: f_midi: convert to new function interface with backward compatibilityConverting midi to the new function interface requires convertingthe USB midi&apos;s function code and its users.This patch converts the f_midi.c to the new function interface.The file can now be compiled into a separate usb_f_midi.ko module.The old function interface is provided by means of a preprocessorconditional directives. After all users are converted, the old interfacecan be removed.Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Thu, 16 Oct 2014 11:33:27 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>6d11ed76 - usb: gadget: f_uvc: convert f_uvc to new function interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#6d11ed76</link>
        <description>usb: gadget: f_uvc: convert f_uvc to new function interfaceUse the new function registration interface. It is requiredin order to integrate configfs support.Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Tested-by: Michael Grzeschik &lt;m.grzeschik@pengutronix.de&gt;[Updated copyright years]Signed-off-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Acked-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Mon, 08 Sep 2014 23:02:10 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>fa31409a - usb: gadget: use $(srctree) instead of $(PWD) for includes</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#fa31409a</link>
        <description>usb: gadget: use $(srctree) instead of $(PWD) for includesUsing $(PWD) breaks builds when make was invoked from outsideof the kernel tree.Signed-off-by: Yegor Yefremov &lt;yegorslists@googlemail.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Wed, 27 Aug 2014 08:42:53 +0000</pubDate>
        <dc:creator>Yegor Yefremov &lt;yegorslists@googlemail.com&gt;</dc:creator>
    </item>
<item>
        <title>f3a3406b - usb: gadget: f_uac1: convert to new function interface with backward compatibility</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#f3a3406b</link>
        <description>usb: gadget: f_uac1: convert to new function interface with backward compatibilityConverting uac1 to the new function interface requires convertingthe USB uac1&apos;s function code and its users.This patch converts the f_uac1.c to the new function interface.The file is now compiled into a separate usb_f_uac1.ko module.The old function interface is provided by means of a preprocessorconditional directives. After all users are converted, the old interfacecan be removed.Tested-by: Sebastian Reimers &lt;sebastian.reimers@googlemail.com&gt;Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Tue, 22 Jul 2014 17:58:38 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>f8f93d24 - usb: gadget: f_uac2: convert to new function interface with backward compatibility</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#f8f93d24</link>
        <description>usb: gadget: f_uac2: convert to new function interface with backward compatibilityConverting uac2 to the new function interface requires convertingthe USB uac2&apos;s function code and its users.This patch converts the f_uac2.c to the new function interface.The file is now compiled into a separate usb_f_uac2.ko module.The old function interface is provided by means of a preprocessorconditional directives. After all users are converted, the old interfacecan be removed.Tested-by: Sebastian Reimers &lt;sebastian.reimers@googlemail.com&gt;Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Tue, 22 Jul 2014 17:58:30 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>5d197038 - usb: gadget: remove $(PWD) in ccflags-y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#5d197038</link>
        <description>usb: gadget: remove $(PWD) in ccflags-yThe variable $(PWD) is useless, and it may break the compilation.For example, it breaks the kernel compilation when it&apos;s done withbuildroot :  /home/trem/Codes/armadeus/armadeus/buildroot/output/host/usr/bin/ccache/home/trem/Codes/armadeus/armadeus/buildroot/output/host/usr/bin/arm-buildroot-linux-uclibcgnueabi-gcc-Wp,-MD,drivers/usb/gadget/legacy/.hid.o.d  -nostdinc -isystem/home/trem/Codes/armadeus/armadeus/buildroot/output/host/usr/lib/gcc/arm-buildroot-linux-uclibcgnueabi/4.7.3/include-I./arch/arm/include -Iarch/arm/include/generated  -Iinclude-I./arch/arm/include/uapi -Iarch/arm/include/generated/uapi-I./include/uapi -Iinclude/generated/uapi -include./include/linux/kconfig.h -D__KERNEL__ -mlittle-endian -Wall -Wundef-Wstrict-prototypes -Wno-trigraphs -fno-strict-aliasing -fno-common-Werror-implicit-function-declaration -Wno-format-security-fno-dwarf2-cfi-asm -mabi=aapcs-linux -mno-thumb-interwork -mfpu=vfp-funwind-tables -marm -D__LINUX_ARM_ARCH__=5 -march=armv5te-mtune=arm9tdmi -msoft-float -Uarm -fno-delete-null-pointer-checks -O2--param=allow-store-data-races=0 -Wframe-larger-than=1024-fno-stack-protector -Wno-unused-but-set-variable -fomit-frame-pointer-fno-var-tracking-assignments -g -Wdeclaration-after-statement-Wno-pointer-sign -fno-strict-overflow -fconserve-stack-Werror=implicit-int -Werror=strict-prototypes -DCC_HAVE_ASM_GOTO-I/home/trem/Codes/armadeus/armadeus/buildroot/drivers/usb/gadget/-I/home/trem/Codes/armadeus/armadeus/buildroot/drivers/usb/gadget/udc/-I/home/trem/Codes/armadeus/armadeus/buildroot/drivers/usb/gadget/function/-DMODULE  -D&quot;KBUILD_STR(s)=#s&quot; -D&quot;KBUILD_BASENAME=KBUILD_STR(hid)&quot;-D&quot;KBUILD_MODNAME=KBUILD_STR(g_hid)&quot; -c -odrivers/usb/gadget/legacy/hid.o drivers/usb/gadget/legacy/hid.cdrivers/usb/gadget/epautoconf.c:23:26: erreur fatale: gadget_chips.h :Aucun fichier ou dossier de ce typeThis compilation line include :..../buildroot/driver/usb/gadgetbut the real path is :..../buildroot/output/build/linux-3.17-rc1/driver/usb/gadgetSigned-off-by: Philippe Reynes &lt;tremyfr@gmail.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Sun, 17 Aug 2014 22:08:07 +0000</pubDate>
        <dc:creator>Philippe Reynes &lt;tremyfr@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>00a2430f - usb: gadget: Gadget directory cleanup - group usb functions</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/usb/gadget/function/Makefile#00a2430f</link>
        <description>usb: gadget: Gadget directory cleanup - group usb functionsThe drivers/usb/gadget directory contains many files.Files which are related can be distributed into separate directories.This patch moves the USB functions implementations into a separate directory.Signed-off-by: Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;Signed-off-by: Felipe Balbi &lt;balbi@ti.com&gt;

            List of files:
            /linux-6.15/drivers/usb/gadget/function/Makefile</description>
        <pubDate>Tue, 15 Jul 2014 11:09:46 +0000</pubDate>
        <dc:creator>Andrzej Pietrasiewicz &lt;andrzej.p@samsung.com&gt;</dc:creator>
    </item>
</channel>
</rss>
