<?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>7a24b876 - ASoC: ops-test: Add some basic kunit tests for soc-ops</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#7a24b876</link>
        <description>ASoC: ops-test: Add some basic kunit tests for soc-opsAdd some basic kunit tests for some of the ASoC control put and gethelpers. This will assist in doing some refactoring. Note that presentlysome tests fail, but the rest of the series will fix these up.Signed-off-by: Charles Keepax &lt;ckeepax@opensource.cirrus.com&gt;Link: https://patch.msgid.link/20250318171459.3203730-2-ckeepax@opensource.cirrus.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Tue, 18 Mar 2025 17:14:45 +0000</pubDate>
        <dc:creator>Charles Keepax &lt;ckeepax@opensource.cirrus.com&gt;</dc:creator>
    </item>
<item>
        <title>c087a94b - ASoC: Rename &quot;sh&quot; to &quot;renesas&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#c087a94b</link>
        <description>ASoC: Rename &quot;sh&quot; to &quot;renesas&quot;Rename the &quot;sh&quot; folder to &quot;renesas&quot; to better reflect the Renesas-specificdrivers.Signed-off-by: Lad Prabhakar &lt;prabhakar.mahadev-lad.rj@bp.renesas.com&gt;Acked-by: Kuninori Morimoto &lt;kuninori.morimoto.gx@renesas.com&gt;Link: https://patch.msgid.link/20241025150511.722040-2-prabhakar.mahadev-lad.rj@bp.renesas.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Fri, 25 Oct 2024 15:05:07 +0000</pubDate>
        <dc:creator>Lad Prabhakar &lt;prabhakar.mahadev-lad.rj@bp.renesas.com&gt;</dc:creator>
    </item>
<item>
        <title>3a513da1 - ASoC: SDCA: add initial module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#3a513da1</link>
        <description>ASoC: SDCA: add initial moduleAdd new module for SDCA (SoundWire Device Class for Audio) support.For now just add a parser to identify the SDCA revision and thefunction mask.Note that the SDCA definitions and related MIPI DisCo properties aredefined only for ACPI platforms and extracted with _DSD helpers. Thereis currently no support for Device Tree in the specification, the&apos;depends on ACPI&apos; reflects this design limitation. This might changein a future revision of the specification but for SDCA 1.0 ACPI is theonly supported type of platform firmware.The SDCA library is defined with static inline fallbacks, which willallow for unconditional addition of SDCA support in common parts ofthe code.The design follows a four-step process:1) Basic information related to Functions is extracted from MIPI DisCotables and stored in the &apos;struct sdw_slave&apos;. Devm_ based memoryallocation is not allowed at this point prior to a driver probe, so we onlystore the function node, address and type.2) When a codec driver probes, it will register subdevices for eachFunction identified in phase 1)3) a driver will probe for each subdevice and addition parsing/memoryallocation takes place at this level. devm_ based allocation is highlyencouraged to make error handling manageable.4) Before the peripheral device becomes physically attached, registeraccess is not permitted and the regmaps are cache-only. Whenperipheral device is enumerated, the bus level uses the&apos;update_status&apos; notification; after optional device-levelinitialization, the codec driver will notify each of the subdevices sothat they can start interacting with the hardware.Note that the context extracted in 1) should be arguably be handledcompletely in the codec driver probe. That would however make itdifficult to use the ACPI information for machine quirks, ande.g. select different machine driver and topologies as done for theRT712_VB handling later in the series. To make the implementation ofquirks simpler, this patchset extracts a minimal amount of context(interface revision and number/type of Functions) before the codecdriver probe, and stores this context in the scope of the &apos;structsdw_slave&apos;.The SDCA library can also be used in a vendor-specific driver withoutcreating subdevices, e.g. to retrieve the &apos;initialization-table&apos;values to write platform-specific values as needed.For more technical details, the SDCA specification is available forpublic downloads at https://www.mipi.org/mipi-sdca-v1-0-downloadSigned-off-by: Pierre-Louis Bossart &lt;pierre-louis.bossart@linux.intel.com&gt;Reviewed-by: P&#233;ter Ujfalusi &lt;peter.ujfalusi@linux.intel.com&gt;Signed-off-by: Bard Liao &lt;yung-chuan.liao@linux.intel.com&gt;Link: https://patch.msgid.link/20241016102333.294448-4-yung-chuan.liao@linux.intel.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Wed, 16 Oct 2024 10:23:25 +0000</pubDate>
        <dc:creator>Pierre-Louis Bossart &lt;pierre-louis.bossart@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>d39388e6 - ASoC: intel/sdw-utils: move soundwire machine driver soc ops</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#d39388e6</link>
        <description>ASoC: intel/sdw-utils: move soundwire machine driver soc opsMove Intel SoundWire generic machine driver soc ops to common placeso that it can be used by other platform machine driver.Link: https://github.com/thesofproject/linux/pull/5068Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Reviewed-by: Bard Liao &lt;yung-chuan.liao@linux.intel.com&gt;Reviewed-by: Pierre-Louis Bossart &lt;pierre-louis.bossart@linux.intel.com&gt;Link: https://patch.msgid.link/20240801091446.10457-8-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Thu, 01 Aug 2024 09:14:22 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>fd25e1c1 - ASoC: core: Use *-y instead of *-objs in Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#fd25e1c1</link>
        <description>ASoC: core: 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.Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;Link: https://lore.kernel.org/r/20240507155540.24815-2-tiwai@suse.deSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Tue, 07 May 2024 15:55:05 +0000</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>ef7784e4 - ASoC: soc-card: Add KUnit test case for snd_soc_card_get_kcontrol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#ef7784e4</link>
        <description>ASoC: soc-card: Add KUnit test case for snd_soc_card_get_kcontrolAdd a new snd-soc-card KUnit test with a simple test case forsnd_soc_card_get_kcontrol() and snd_soc_card_get_kcontrol_locked().Signed-off-by: Richard Fitzgerald &lt;rf@opensource.cirrus.com&gt;Reviewed-by: Takashi Iwai &lt;tiwai@suse.de&gt;Link: https://msgid.link/r/20240401100210.61277-4-rf@opensource.cirrus.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Mon, 01 Apr 2024 10:02:10 +0000</pubDate>
        <dc:creator>Richard Fitzgerald &lt;rf@opensource.cirrus.com&gt;</dc:creator>
    </item>
<item>
        <title>d84881e0 - ASoC: Add support for Loongson I2S controller</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#d84881e0</link>
        <description>ASoC: Add support for Loongson I2S controllerLoongson I2S controller is found on 7axxx/2kxxx chips from loongson,it is a PCI device with two private DMA controllers, one for playback,the other for capture.The driver supports the use of DTS or ACPI to describe device resources.Signed-off-by: Yingkun Meng &lt;mengyingkun@loongson.cn&gt;Link: https://lore.kernel.org/r/20230615122718.3412942-1-mengyingkun@loongson.cnSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Thu, 15 Jun 2023 12:27:18 +0000</pubDate>
        <dc:creator>Yingkun Meng &lt;mengyingkun@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>fd4762b6 - ASoC: starfive: Add JH7110 TDM driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#fd4762b6</link>
        <description>ASoC: starfive: Add JH7110 TDM driverAdd tdm driver support for the StarFive JH7110 SoC.Signed-off-by: Walker Chen &lt;walker.chen@starfivetech.com&gt;Reviewed-by: Claudiu Beznea &lt;claudiu.beznea@microchip.com&gt;Link: https://lore.kernel.org/r/20230526145402.450-3-walker.chen@starfivetech.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Fri, 26 May 2023 14:54:01 +0000</pubDate>
        <dc:creator>Walker Chen &lt;walker.chen@starfivetech.com&gt;</dc:creator>
    </item>
<item>
        <title>70264872 - ASoC: Add Google Chameleon v3 i2s driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#70264872</link>
        <description>ASoC: Add Google Chameleon v3 i2s driverAdd driver for the i2s IP present on Google Chameleon v3Signed-off-by: Pawe&#322; Anikiel &lt;pan@semihalf.comLink: https://lore.kernel.org/r/20230508113037.137627-2-pan@semihalf.comSigned-off-by: Mark Brown &lt;broonie@kernel.org

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Mon, 08 May 2023 11:30:31 +0000</pubDate>
        <dc:creator>Pawe&#322; Anikiel &lt;pan@semihalf.com&gt;</dc:creator>
    </item>
<item>
        <title>3df5d0d9 - ASoC: apple: mca: Start new platform driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#3df5d0d9</link>
        <description>ASoC: apple: mca: Start new platform driverAdd ASoC platform driver for the MCA peripheral found on Apple M1 andother chips.Signed-off-by: Martin Povi&#353;er &lt;povik+lin@cutebit.org&gt;Link: https://lore.kernel.org/r/20220824160715.95779-4-povik+lin@cutebit.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Wed, 24 Aug 2022 16:07:14 +0000</pubDate>
        <dc:creator>Martin Povi&#353;er &lt;povik+lin@cutebit.org&gt;</dc:creator>
    </item>
<item>
        <title>f4d92d97 - ASoC: Makefile: Fix simultaneous build of KUNIT tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#f4d92d97</link>
        <description>ASoC: Makefile: Fix simultaneous build of KUNIT testsUsing obj-$() := instead of obj-$() += leads to the latter assignmentoverwriting earlier value. Fix this by using incremental assignment toadd additional objects to build.Signed-off-by: Amadeusz S&#322;awi&#324;ski &lt;amadeuszx.slawinski@linux.intel.com&gt;Reviewed-by: Cezary Rojewski &lt;cezary.rojewski@intel.com&gt;Link: https://lore.kernel.org/r/20220720125115.1785426-1-amadeuszx.slawinski@linux.intel.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Wed, 20 Jul 2022 12:51:15 +0000</pubDate>
        <dc:creator>Amadeusz S&#322;awi&#324;ski &lt;amadeuszx.slawinski@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>89342fa3 - ASoC: soc-utils: Add kunit test for snd_soc_tdm_params_to_bclk()</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#89342fa3</link>
        <description>ASoC: soc-utils: Add kunit test for snd_soc_tdm_params_to_bclk()Create a new kunit test for soc-utils and use it to testsnd_soc_tdm_params_to_bclk().The test uses a table of values to avoid the possibility that anon-the-fly generator contains the same algorithmic error as thefunction-under-test and so fails to detect a bug.There is no need to test every possible combination of values.Enough test cases are included to give confidence that the functionis producing the correct results.Signed-off-by: Richard Fitzgerald &lt;rf@opensource.cirrus.com&gt;Link: https://lore.kernel.org/r/20220405135419.1230088-4-rf@opensource.cirrus.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Tue, 05 Apr 2022 13:54:17 +0000</pubDate>
        <dc:creator>Richard Fitzgerald &lt;rf@opensource.cirrus.com&gt;</dc:creator>
    </item>
<item>
        <title>b5fb388d - ASoC: topology: adhere to KUNIT formatting standard</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#b5fb388d</link>
        <description>ASoC: topology: adhere to KUNIT formatting standardDrop &apos;S&apos; from end of SND_SOC_TOPOLOGY_KUNIT_TESTS inorder to adhear to the KUNIT *_KUNIT_TEST config name format.Signed-off-by: Nico Pache &lt;npache@redhat.com&gt;Link: https://lore.kernel.org/r/dcf79e592f9a7e14483dde32ac561f6af2632e50.1618388989.git.npache@redhat.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Wed, 14 Apr 2021 08:58:04 +0000</pubDate>
        <dc:creator>Nico Pache &lt;npache@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>d52bbf74 - ASoC: topology: KUnit: Add KUnit tests passing various arguments to snd_soc_tplg_component_load</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#d52bbf74</link>
        <description>ASoC: topology: KUnit: Add KUnit tests passing various arguments to snd_soc_tplg_component_loadIn order to ensure correct behaviour of topology API, add unit testsexercising topology functionality.Start with adding cases for passing various arguments tosnd_soc_tplg_component_load as it is part of exposed topology API.First test case adds test passing NULL component as argument.Following one adds test case for passing NULL ops as argument.Finally add test case passing NULL fw as argument.Signed-off-by: Amadeusz S&#322;awi&#324;ski &lt;amadeuszx.slawinski@linux.intel.com&gt;Tested-by: Pierre-Louis Bossart &lt;pierre-louis.bossart@linux.intel.com&gt;Link: https://lore.kernel.org/r/20210120152846.1703655-4-amadeuszx.slawinski@linux.intel.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Wed, 20 Jan 2021 15:28:44 +0000</pubDate>
        <dc:creator>Amadeusz S&#322;awi&#324;ski &lt;amadeuszx.slawinski@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>dc98f1d6 - ASoC: remove zte zx drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#dc98f1d6</link>
        <description>ASoC: remove zte zx driversThe zte zx platform is getting removed, so this driver is nolonger needed.Cc: Jun Nie &lt;jun.nie@linaro.org&gt;Cc: Shawn Guo &lt;shawnguo@kernel.org&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20210120162553.21666-3-arnd@kernel.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Wed, 20 Jan 2021 16:25:53 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>61fbeb5d - ASoC: remove sirf prima/atlas drivers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#61fbeb5d</link>
        <description>ASoC: remove sirf prima/atlas driversThe CSR SiRF prima2/atlas platforms are getting removed, so this driveris no longer needed.Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Acked-by: Barry Song &lt;baohua@kernel.org&gt;Link: https://lore.kernel.org/r/20210120162553.21666-2-arnd@kernel.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Wed, 20 Jan 2021 16:25:52 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>a8644292 - ASoC: txx9: Remove driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#a8644292</link>
        <description>ASoC: txx9: Remove driverCPU support for TX49xx is getting removed, so remove sound support for it.Signed-off-by: Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;Link: https://lore.kernel.org/r/20210105140305.141401-11-tsbogend@alpha.franken.deSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Tue, 05 Jan 2021 14:02:55 +0000</pubDate>
        <dc:creator>Thomas Bogendoerfer &lt;tsbogend@alpha.franken.de&gt;</dc:creator>
    </item>
<item>
        <title>460b42d1 - ASoC: soc-component: merge soc-io.c into soc-component.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#460b42d1</link>
        <description>ASoC: soc-component: merge soc-io.c into soc-component.csoc-io.c has snd_soc_component_xxx() functions for I/O.We have soc-componennt.c for it.Let&apos;s merge soc-io.c into soc-component.cBy this patch, original soc-io.c functions start to usesoc_component_err() when error case.Signed-off-by: Kuninori Morimoto &lt;kuninori.morimoto.gx@renesas.com&gt;Reviewed-by: Ranjani Sridharan &lt;ranjani.sridharan@linux.intel.com&gt;Link: https://lore.kernel.org/r/87h7vrw8ws.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Thu, 04 Jun 2020 08:08:03 +0000</pubDate>
        <dc:creator>Kuninori Morimoto &lt;kuninori.morimoto.gx@renesas.com&gt;</dc:creator>
    </item>
<item>
        <title>1793936b - ASoC: add soc-card.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#1793936b</link>
        <description>ASoC: add soc-card.cCurrent ALSA SoC has some snd_soc_card_xxx() functions,and card-&gt;xxx() callbacks.But, it is implemented randomly at random place.To collect all card related functions into one place,this patch creats new soc-card.c.Signed-off-by: Kuninori Morimoto &lt;kuninori.morimoto.gx@renesas.com&gt;Reviewed-by: Ranjani Sridharan &lt;ranjani.sridharan@linux.intel.com&gt;Link: https://lore.kernel.org/r/87blm825kt.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Thu, 28 May 2020 01:47:46 +0000</pubDate>
        <dc:creator>Kuninori Morimoto &lt;kuninori.morimoto.gx@renesas.com&gt;</dc:creator>
    </item>
<item>
        <title>02e75636 - ASoC: add soc-link.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/Makefile#02e75636</link>
        <description>ASoC: add soc-link.cCurrent ALSA SoC has many dai_link-&gt;xxx() functions.But, it is implemented randomly at random place.This patch creats new soc-link.c and collect dai_link relatedoperation into it.Signed-off-by: Kuninori Morimoto &lt;kuninori.morimoto.gx@renesas.com&gt;Reviewed-by: Ranjani Sridharan &lt;ranjani.sridharan@linux.intel.com&gt;Reviewed-by: Pierre-Louis Bossart &lt;pierre-louis.bossart@linux.intel.com&gt;Link: https://lore.kernel.org/r/871rn84ys5.wl-kuninori.morimoto.gx@renesas.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/Makefile</description>
        <pubDate>Mon, 25 May 2020 00:57:14 +0000</pubDate>
        <dc:creator>Kuninori Morimoto &lt;kuninori.morimoto.gx@renesas.com&gt;</dc:creator>
    </item>
</channel>
</rss>
