<?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>fdd51b3e - ALSA: firewire: Use *-y instead of *-objs in Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#fdd51b3e</link>
        <description>ALSA: firewire: Use *-y instead of *-objs in Makefile*-objs suffix is reserved rather for (user-space) host programs whileusually *-y suffix is used for kernel drivers (although *-objs worksfor that purpose for now).Let&apos;s correct the old usages of *-objs in Makefiles.Cc: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;Reviewed-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Reviewed-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Reviewed-by: Jaroslav Kysela &lt;perex@perex.cz&gt;Link: https://lore.kernel.org/r/20240507135513.14919-8-tiwai@suse.de

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Tue, 07 May 2024 13:55:07 +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/sound/firewire/bebob/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/sound/firewire/bebob/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>df6a8866 - ALSA: bebob: rename file with vendor-dependent code so that it&apos;s for Yamaha/Terratec</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#df6a8866</link>
        <description>ALSA: bebob: rename file with vendor-dependent code so that it&apos;s for Yamaha/TerratecOnce Yamaha and Terratec cooperated to develop some audio and music unitson IEEE 1394 bus. On these models, the same embedded board is used, andsimilar configurations are also applied.This commit renames file for Yamaha&apos;s configuration so that it&apos;s for bothof Yamaha and Terratec.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Wed, 24 Aug 2016 12:42:42 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>df483388 - ALSA: fireworks/bebob/oxfw/dice: enable to make as built-in</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#df483388</link>
        <description>ALSA: fireworks/bebob/oxfw/dice: enable to make as built-inWhen committed to upstream, these four modules had wrong entries forMakefile. This forces them to be loadable modules even if they&apos;re setas built-in.This commit fixes this bug.Fixes: b5b04336015e(&apos;ALSA: fireworks: Add skelton for Fireworks based devices&apos;)Fixes: fd6f4b0dc167(&apos;ALSA: bebob: Add skelton for BeBoB based devices&apos;)Fixes: 1a4e39c2e5ca(&apos;ALSA: oxfw: Move to its own directory&apos;)Fixes: 14ff6a094815(&apos;ALSA: dice: Move file to its own directory&apos;)Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Sun, 18 Oct 2015 04:46:47 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>9076c22d - ALSA: bebob: Add support for M-Audio usual Firewire series</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#9076c22d</link>
        <description>ALSA: bebob: Add support for M-Audio usual Firewire seriesThis commit allows this driver to support some models which M-Audio produceswith DM1000/DM1000E with usual firmware. They are: - Firewire 410 - Firewire AudioPhile - Firewire Solo - Ozonic - NRV10 - FirewireLightBridgeAccording to a person who worked in BridgeCo, some models are produced with&apos;Pre-BeBoB&apos;. This means that these products were released before BeBoB wasofficially produced, and later BeBoB specification was formed. So these modelshave some quirks.M-Audio usual firmware quirks: - Just after powering on, &apos;Firewire 410&apos; waits to download firmware. This   state is changed when receiving cue. Then bus reset is generated and the   device is recognized as a different model with the uploaded firmware. - &apos;Firewire Audiophile&apos; also waits to download firmware but its   vendor id/model id is the same as the one after loading firmware. - The information of channel mapping for MIDI conformant data channel is   invalid against BridgeCo specification.This commit adds some codes for these quirks but don&apos;t support to uploadfirmware.This commit also adds specific operations to get metering information. Themetering information also includes status of clock synchronization if the modelsupports to switch source of clock.The specification of FirewireLightBridge is unknown. So in this time, normaloperations are applied for this model.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:25 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>25784ec2 - ALSA: bebob: Add support for Focusrite Saffire/SaffirePro series</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#25784ec2</link>
        <description>ALSA: bebob: Add support for Focusrite Saffire/SaffirePro seriesThis commit allows this driver to support all of models which Focusriteproduces with DM1000/BeBoB. They are: - Saffire - Saffire LE - SaffirePro 10 I/O - SaffirePro 26 I/OThis commit adds Focusrite specific operations:1. Get source of clock2. Get/Set sampling frequency3. Get metering informationThe driver uses these functionalities to read/write specific address by asynctransaction.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:24 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>8ac98a35 - ALSA: bebob: Add support for Yamaha GO series</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#8ac98a35</link>
        <description>ALSA: bebob: Add support for Yamaha GO seriesThis commit allows this driver to support all of models which Yamaha producedwith DM1000/BeBoB. They are: - GO44 - GO46This commit adds Yamaha specific operations. To get source of clock, AV/C AudioSubunit command is used.I note that their appearances are similar to some models of TerraTec; &apos;Go44&apos; issimilar to &apos;PHASE 24 FW&apos; and &apos;GO46&apos; is similar to &apos;PHASE X24 FW&apos;. But theircombination of Audio/Music subunits is a bit different.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:23 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>326b9cac - ALSA: bebob: Add support for Terratec PHASE, EWS series and Aureon</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#326b9cac</link>
        <description>ALSA: bebob: Add support for Terratec PHASE, EWS series and AureonThis commit allows this driver to support all of models which Terratec producedwith DM1000/BeBoB. They are: - PHASE 24 FW - PHASE X24 FW - PHASE 88 Rack FW - EWS MIC2 - EWS MIC4 - Aureon 7.1 FirewireFor Phase series, this commit adds a Terratec specific operation. To get sourceof clock. AV/C Audio Subunit command is used.For EWS series and Aureon, this module uses normal operations.Tested-by: Maximilian Engelhardt &lt;maxi@daemonizer.de&gt; (PHASE 24 FW)Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:22 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>1fc9522a - ALSA: bebob: Prepare for device specific operations</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#1fc9522a</link>
        <description>ALSA: bebob: Prepare for device specific operationsThis commit is for some devices which have its own operations or quirks.Many functionality should be implemented in user land. Then this commit addsfunctionality related to stream such as sampling frequency or clock source. Forhelp to debug, this commit adds the functionality to get metering informationif it&apos;s available.To help these functionalities, this commit adds some AV/C commands defined in&apos;AV/C Audio Subunit Specification (1394TA).Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:21 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>618eabea - ALSA: bebob: Add hwdep interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#618eabea</link>
        <description>ALSA: bebob: Add hwdep interfaceThis interface is designed for mixer/control application. By using hwdepinterface, the application can get information about firewire node, canlock/unlock kernel streaming and can get notification at starting/stoppingkernel streaming.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:20 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>fbbebd2c - ALSA: bebob: Add PCM interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#fbbebd2c</link>
        <description>ALSA: bebob: Add PCM interfaceThis commit adds a functionality to capture/playback PCM samples.When AMDTP stream is already running for PCM or the source of clock is notinternal, available sampling rate is limited at current one.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:19 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>248b7802 - ALSA: bebob: Add MIDI interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#248b7802</link>
        <description>ALSA: bebob: Add MIDI interfaceThis commit adds a functionality to capture/playback MIDI messages.When no AMDTP streams are running, this module starts AMDTP stream at currentsampling rate for MIDI substream.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:18 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>ad9697ba - ALSA: bebob: Add proc interface for debugging purpose</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#ad9697ba</link>
        <description>ALSA: bebob: Add proc interface for debugging purposeThis commit adds proc interface to get these information for debugging: - firmware information - stream formation - current clock source and sampling rateSigned-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:17 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>eb7b3a05 - ALSA: bebob: Add commands and connections/streams management</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#eb7b3a05</link>
        <description>ALSA: bebob: Add commands and connections/streams managementThis commit adds management functionality for connections and streams.BeBoB uses CMP to manage connections and uses AMDTP for streams.This commit also adds some BridgeCo&apos;s AV/C extension commands. There are someBridgeCo&apos;s AV/C extension commands but this commit just uses below commandsto get device&apos;s capability and status: 1.Extended Plug Info commands  - Plug Channel Position Specific Data  - Plug Type Specific Data  - Cluster(Section) Info Specific Data  - Plug Input Specific Data 2.Extended Stream Format Information commands  - Extended Stream Format Information Command - List RequestFor Extended Plug Info commands for Cluster Info Specific Data, I pick up&apos;section&apos; instead of &apos;cluster&apos; from document to prevent from misunderstandingbecause &apos;cluster&apos; is also used in IEC 61883-6.Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:15 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
<item>
        <title>fd6f4b0d - ALSA: bebob: Add skelton for BeBoB based devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/firewire/bebob/Makefile#fd6f4b0d</link>
        <description>ALSA: bebob: Add skelton for BeBoB based devicesThis commit adds a new driver for BeBoB based devices with no specificoperations. Currently this driver just create/remove card instance accordingto callbacks.BeBoB is &apos;BridgeCo enhanced Breakout Box&apos;. This is installed to firewiredevices with DM1000/DM1100/DM1500 chipset. It gives common way for hostsystem to handle BeBoB based devices.Current supported devices: - Edirol FA-66/FA-101 - PreSonus FIREBOX/FIREPOD/FP10/Inspire1394 - BridgeCo RDAudio1/Audio5 - Mackie Onyx 1220/1620/1640 (Firewire I/O Card) - Mackie d.2 (Firewire Option) - Stanton FinalScratch 2 (ScratchAmp) - Tascam IF-FW DM - Behringer XENIX UFX 1204/1604 - Behringer Digital Mixer X32 series (X-UF Card) - Apogee Rosetta 200/Rosetta 400 (X-FireWire card) - Apogee DA-16X/AD-16X/DD-16X (X-FireWire card) - Apogee Ensemble - ESI Quotafire610 - AcousticReality eARMasterOne - CME MatrixKFW - Phonix Helix Board 12 MkII/18 MkII/24 MkII - Phonic Helix Board 12 Universal/18 Universal/24 Universal - Lynx Aurora 8/16 (LT-FW) - ICON FireXon - PrismSound Orpheus/ADA-8XRDevices possible to be supported if identifying IDs: - Apogee Mini-Me Firewire/Mini-DAC Firewire - Behringer F-Control Audio 610/1616 - Cakewalk Sonar Power Studio 66 - CME UF400e - ESI Quotafire XL - Infrasonic DewX/Windy6 - Mackie Digital X Bus x.200/400 - Phonic Helix Board 12/18/24 - Phonic FireFly 202/302 - Rolf Spuler Firewire GuitarTested-by: David Henningsson &lt;david.henningsson@canonical.com&gt;Signed-off-by: Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux-6.15/sound/firewire/bebob/Makefile</description>
        <pubDate>Fri, 25 Apr 2014 13:45:14 +0000</pubDate>
        <dc:creator>Takashi Sakamoto &lt;o-takashi@sakamocchi.jp&gt;</dc:creator>
    </item>
</channel>
</rss>
