<?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 Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>552f66c4 - ASoC: amd: update Pink Sardine platform Kconfig description</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#552f66c4</link>
        <description>ASoC: amd: update Pink Sardine platform Kconfig descriptionUpdate Pink Sardine platform Kconfig option description.Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://patch.msgid.link/20250207062819.1527184-21-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Fri, 07 Feb 2025 06:28:14 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>7e24ec93 - ASoC: amd: Add ACPI dependency to fix build error</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#7e24ec93</link>
        <description>ASoC: amd: Add ACPI dependency to fix build errorAs reported by the kernel test robot, the following error occurs:   sound/soc/amd/yc/acp6x-mach.c: In function &apos;acp6x_probe&apos;:&gt;&gt; sound/soc/amd/yc/acp6x-mach.c:573:15: error: implicit declaration of function &apos;acpi_evaluate_integer&apos;; did you mean &apos;acpi_evaluate_object&apos;? [-Werror=implicit-function-declaration]     573 |         ret = acpi_evaluate_integer(handle, &quot;_WOV&quot;, NULL, &amp;dmic_status);         |               ^~~~~~~~~~~~~~~~~~~~~         |               acpi_evaluate_object   cc1: some warnings being treated as errorsThe function &apos;acpi_evaluate_integer&apos; and its prototype in &apos;acpi_bus.h&apos;are only available when &apos;CONFIG_ACPI&apos; is enabled. Add a &apos;depends on ACPI&apos;directive in Kconfig to ensure proper compilation.Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202501090345.pBIDRTym-lkp@intel.com/Signed-off-by: Yu-Chun Lin &lt;eleanor15x@gmail.com&gt;Link: https://patch.msgid.link/20250109171547.362412-1-eleanor15x@gmail.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Thu, 09 Jan 2025 17:15:47 +0000</pubDate>
        <dc:creator>Yu-Chun Lin &lt;eleanor15x@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0109ee00 - ASoC: amd: Fix build dependencies for `SND_SOC_AMD_PS`</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#0109ee00</link>
        <description>ASoC: amd: Fix build dependencies for `SND_SOC_AMD_PS`The pci-ps module now must have `SND_SOC_ACPI_AMD_MATCH` selectedto reference the `snd_soc_acpi_amd_acp63_sdw_machines` symbol.Fixes: 56d540befd59 (&quot;ASoC: amd: ps: add soundwire machines for acp6.3 platform&quot;)Cc: Vijendar.Mukunda@amd.comReported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202411180658.mIeWje2V-lkp@intel.com/Signed-off-by: Mario Limonciello &lt;mario.limonciello@amd.com&gt;Link: https://patch.msgid.link/20241118025527.3318493-1-superm1@kernel.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Mon, 18 Nov 2024 02:55:27 +0000</pubDate>
        <dc:creator>Mario Limonciello &lt;mario.limonciello@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>56437a56 - ASoC: amd: fix for soundwire build dependencies for legacy stack</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#56437a56</link>
        <description>ASoC: amd: fix for soundwire build dependencies for legacy stackThe SND_SOC_AMD_SOUNDWIRE Kconfig symbol has build dependency onSOUNDWIRE_AMD. It gets it wrong for a configuration involvingSND_SOC_AMD_SOUNDWIRE_LINK_BASELINE=y,SND_SOC_AMD_PS=y and SOUNDWIRE_AMD=m,which results in a link failure:ld: vmlinux.o: in function `amd_sdw_probe&apos;:&gt;&gt; sound/soc/amd/ps/pci-ps.c:271:(.text+0x1d51eff):	undefined reference to `sdw_amd_probe&apos;ld: vmlinux.o: in function `acp63_sdw_machine_select&apos;:&gt;&gt; sound/soc/amd/ps/pci-ps.c:294:(.text+0x1d525d5):	undefined reference to `sdw_amd_get_slave_info&apos;ld: vmlinux.o: in function `amd_sdw_exit&apos;:&gt;&gt; sound/soc/amd/ps/pci-ps.c:280:(.text+0x1d538ce):	undefined reference to `sdw_amd_exit&apos;Add a top level check config that forbids any of the AMD ACP driverswith version &gt;= 6.3 from being built-in with CONFIG_SOUNDWIRE_AMD=m.Move SND_AMD_ACP_CONFIG common dependency config toSND_SOC_AMD_ACP63_TOPLEVEL config.Reported-by: kernel test robot &lt;lkp@intel.com&gt;Closes: https://lore.kernel.org/oe-kbuild-all/202404061257.khJml82D-lkp@intel.com/Fixes: a806793f231e (&quot;ASoC: amd: simplify soundwire dependencies for legacy stack&quot;)Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://msgid.link/r/20240408180229.3287220-1-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Mon, 08 Apr 2024 18:02:26 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>a806793f - ASoC: amd: simplify soundwire dependencies for legacy stack</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#a806793f</link>
        <description>ASoC: amd: simplify soundwire dependencies for legacy stackThe CONFIG_SOUNDWIRE_AMD is a user-visible option, it should be neverselected by another driver.So replace the extra complexity with a normal Kconfig dependency inSND_SOC_AMD_SOUNDWIRE.Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://msgid.link/r/20240322112018.3063344-1-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Fri, 22 Mar 2024 11:20:15 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>0386d765 - ASoC: amd: ps: refactor acp device configuration read logic</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#0386d765</link>
        <description>ASoC: amd: ps: refactor acp device configuration read logicRefactor acp device configuration read logic and use common functionto scan SoundWire devices.Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://msgid.link/r/20240214104014.1144668-1-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Wed, 14 Feb 2024 10:40:01 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>dba22efd - ASoC: amd: vangogh: Add support for NAU8821/MAX98388 variant</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#dba22efd</link>
        <description>ASoC: amd: vangogh: Add support for NAU8821/MAX98388 variantExtend the Vangogh machine driver to support a variant based on theNuvoton NAU88L21 Codec and the Analog Devices MAX98388 SpeakerAmplifier.Additionally, enable probing via ACPI match table for this and futurehardware revisions.Co-developed-by: Lucas Tanure &lt;lucas.tanure@collabora.com&gt;Signed-off-by: Lucas Tanure &lt;lucas.tanure@collabora.com&gt;Signed-off-by: Cristian Ciocaltea &lt;cristian.ciocaltea@collabora.com&gt;Link: https://lore.kernel.org/r/20230705214800.193244-4-cristian.ciocaltea@collabora.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Wed, 05 Jul 2023 21:48:00 +0000</pubDate>
        <dc:creator>Cristian Ciocaltea &lt;cristian.ciocaltea@collabora.com&gt;</dc:creator>
    </item>
<item>
        <title>6e8f7cb4 - ASoC: amd: update comments in Kconfig file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#6e8f7cb4</link>
        <description>ASoC: amd: update comments in Kconfig fileUpdate comments in Kconfig file for Pink Sardine platform.Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://lore.kernel.org/r/20230612095903.2113464-9-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Mon, 12 Jun 2023 09:59:02 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>fd0a7ec3 - ASoC: amd: vangogh: select CONFIG_SND_AMD_ACP_CONFIG</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#fd0a7ec3</link>
        <description>ASoC: amd: vangogh: select CONFIG_SND_AMD_ACP_CONFIGThe vangogh driver just gained a link time dependency that now causesrandconfig builds to fail:x86_64-linux-ld: sound/soc/amd/vangogh/pci-acp5x.o: in function `snd_acp5x_probe&apos;:pci-acp5x.c:(.text+0xbb): undefined reference to `snd_amd_acp_find_config&apos;Fixes: e89f45edb747e (&quot;ASoC: amd: vangogh: Add check for acp config flags in vangogh platform&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20230605085839.2157268-1-arnd@kernel.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Mon, 05 Jun 2023 08:58:29 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>812a0525 - ASoC: amd: vangogh: select CONFIG_SND_AMD_ACP_CONFIG</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#812a0525</link>
        <description>ASoC: amd: vangogh: select CONFIG_SND_AMD_ACP_CONFIGThe vangogh driver just gained a link time dependency that now causesrandconfig builds to fail:x86_64-linux-ld: sound/soc/amd/vangogh/pci-acp5x.o: in function `snd_acp5x_probe&apos;:pci-acp5x.c:(.text+0xbb): undefined reference to `snd_amd_acp_find_config&apos;Fixes: e89f45edb747e (&quot;ASoC: amd: vangogh: Add check for acp config flags in vangogh platform&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Link: https://lore.kernel.org/r/20230602124447.863476-1-arnd@kernel.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Fri, 02 Jun 2023 12:44:39 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>bddcfb08 - ASoC: amd: Add check for acp config flags</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#bddcfb08</link>
        <description>ASoC: amd: Add check for acp config flagsWe have SOF and generic ACP support enabled for Rembrandt andpheonix platforms on some machines. Since we have same PCI idused for probing, add check for machine configuration flag toavoid conflict with newer pci drivers. Such machine flag hasbeen initialized via dmi match on few Chrome machines. If noflag is specified probe and register older platform device.Signed-off-by: Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;Reviewed-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://lore.kernel.org/r/20230412091638.1158901-1-Syed.SabaKareem@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Wed, 12 Apr 2023 09:16:16 +0000</pubDate>
        <dc:creator>Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>4b192114 - ASoC: amd: fix ACP version typo mistake</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#4b192114</link>
        <description>ASoC: amd: fix ACP version typo mistakePink Sardine is based on ACP6.3 architecture.This patch fixes the typo mistake acp6.2 -&gt; acp6.3Signed-off-by: syed saba kareem &lt;syed.sabakareem@amd.com&gt;Link: https://lore.kernel.org/r/20221104121001.207992-1-Syed.SabaKareem@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Fri, 04 Nov 2022 12:09:07 +0000</pubDate>
        <dc:creator>syed saba kareem &lt;syed.sabakareem@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>ced579dc - ASoC: amd: fix spelling mistake: &quot;i.e&quot; -&gt; &quot;i.e.&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#ced579dc</link>
        <description>ASoC: amd: fix spelling mistake: &quot;i.e&quot; -&gt; &quot;i.e.&quot;trivial fix to spelling mistake in Kconfig File.Reported by : Randy Dunlap &lt;rdunlap@infradead.org&gt;Signed-off-by: Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;Link: https://lore.kernel.org/r/20220830132259.7759-1-Syed.SabaKareem@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Tue, 30 Aug 2022 13:22:55 +0000</pubDate>
        <dc:creator>Syed Saba kareem &lt;Syed.SabaKareem@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>2a09cef6 - ASoC: amd: enable Pink sardine platform machine driver build.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#2a09cef6</link>
        <description>ASoC: amd: enable Pink sardine platform machine driver build.This patch enables Pink Sardine platform machine driver build.Signed-off-by: Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;Reviewed-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://lore.kernel.org/r/20220827165657.2343818-14-Syed.SabaKareem@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Sat, 27 Aug 2022 16:56:57 +0000</pubDate>
        <dc:creator>Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>1e436648 - ASoC: amd: enable Pink Sardine acp6.2 drivers build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#1e436648</link>
        <description>ASoC: amd: enable Pink Sardine acp6.2 drivers buildPink Sardine ACP6.2 drivers can be built by selecting necessarykernel config option.The patch enables build support of the same.Signed-off-by: Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;Reviewed-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://lore.kernel.org/r/20220827165657.2343818-11-Syed.SabaKareem@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Sat, 27 Aug 2022 16:56:54 +0000</pubDate>
        <dc:creator>Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>4fb35936 - ASoC: amd: enable RPL Platform acp drivers build</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#4fb35936</link>
        <description>ASoC: amd: enable RPL Platform acp drivers buildRPL Platform drivers can be built by selecting necessarykernel config option.The patch enables build support of the same.Signed-off-by: Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;Reviewed-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://lore.kernel.org/r/20220721061035.91139-5-Syed.SabaKareem@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Thu, 21 Jul 2022 06:10:02 +0000</pubDate>
        <dc:creator>Syed Saba Kareem &lt;Syed.SabaKareem@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>1795c16a - ASoC: amd: fix Jadeite kconfig warning and build errors</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#1795c16a</link>
        <description>ASoC: amd: fix Jadeite kconfig warning and build errorsSince SND_SOC_ES8316 has a hard dependency on I2C and since &apos;select&apos;does not follow any dependency chains, SND_SOC_AMD_ST_ES8336_MACHalso needs to have a hard dependency on I2C.Fixes a kconfig warning and subsequent build errors:WARNING: unmet direct dependencies detected for SND_SOC_ES8316  Depends on [n]: SOUND [=y] &amp;&amp; !UML &amp;&amp; SND [=y] &amp;&amp; SND_SOC [=y] &amp;&amp; I2C [=n]  Selected by [y]:  - SND_SOC_AMD_ST_ES8336_MACH [=y] &amp;&amp; SOUND [=y] &amp;&amp; !UML &amp;&amp; SND [=y] &amp;&amp; SND_SOC [=y] &amp;&amp; SND_SOC_AMD_ACP [=y] &amp;&amp; ACPI [=y] &amp;&amp; (I2C [=n] || COMPILE_TEST [=y])sound/soc/codecs/es8316.c:866:1: warning: data definition has no type or storage class  866 | module_i2c_driver(es8316_i2c_driver);sound/soc/codecs/es8316.c:866:1: error: type defaults to &#8216;int&#8217; in declaration of &#8216;module_i2c_driver&#8217; [-Werror=implicit-int]sound/soc/codecs/es8316.c:866:1: warning: parameter names (without types) in function declarationsound/soc/codecs/es8316.c:857:26: warning: &#8216;es8316_i2c_driver&#8217; defined but not used [-Wunused-variable]  857 | static struct i2c_driver es8316_i2c_driver = {Fixes: f94fa8405801 (&quot;ASoC: amd: enable machine driver build for Jadeite platform&quot;)Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Cc: Mark Brown &lt;broonie@kernel.org&gt;Cc: alsa-devel@alsa-project.orgCc: Jaroslav Kysela &lt;perex@perex.cz&gt;Cc: Takashi Iwai &lt;tiwai@suse.com&gt;Link: https://lore.kernel.org/r/20220712183348.31046-1-rdunlap@infradead.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Tue, 12 Jul 2022 18:33:48 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>ab34403d - ASoC: amd: fix ACPI dependency compile errors and warnings</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#ab34403d</link>
        <description>ASoC: amd: fix ACPI dependency compile errors and warningsFixed ACPI dependency complie errors and warnings as listed below.All warnings (new ones prefixed by &gt;&gt;):sound/soc/soc-acpi.c:34:1: error: redefinition of &apos;snd_soc_acpi_find_machine&apos;  34 | snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines)     | ^~~~~~~~~~~~~~~~~~~~~~~~~In file included from sound/soc/soc-acpi.c:9:include/sound/soc-acpi.h:38:1: note: previous definition of&apos;snd_soc_acpi_find_machine&apos;with type &apos;struct snd_soc_acpi_mach *(struct snd_soc_acpi_mach *)&apos;38 | snd_soc_acpi_find_machine(struct snd_soc_acpi_mach *machines)   | ^~~~~~~~~~~~~~~~~~~~~~~~~sound/soc/soc-acpi.c: In function &apos;snd_soc_acpi_find_package&apos;:sound/soc/soc-acpi.c:58:36: error: implicit declaration of function&apos;acpi_fetch_acpi_dev&apos;;did you mean &apos;device_match_acpi_dev&apos;?[-Werror=implicit-function-declaration]58 | struct acpi_device *adev = acpi_fetch_acpi_dev(handle);   |                            ^~~~~~~~~~~~~~~~~~~   |                            device_match_acpi_dev&gt;&gt; sound/soc/soc-acpi.c:58:36: warning: initialization of   &apos;struct acpi_device *&apos; from &apos;int&apos; makes pointer from integer   without a cast [-Wint-conversion]sound/soc/soc-acpi.c:64:25: error: invalid use of undefined type&apos;struct acpi_device&apos;64 |  if (adev &amp;&amp; adev-&gt;status.present &amp;&amp; adev-&gt;status.functional) {   |                  ^~sound/soc/soc-acpi.c:64:49: error: invalid use of undefined type&apos;struct acpi_device&apos;64 |  if (adev &amp;&amp; adev-&gt;status.present &amp;&amp; adev-&gt;status.functional) {   |                                          ^~sound/soc/soc-acpi.c:80:26: error: implicit declaration of function&apos;acpi_extract_package&apos;  [-Werror=implicit-function-declaration] 80 | status = acpi_extract_package(myobj,    |          ^~~~~~~~~~~~~~~~~~~~ sound/soc/soc-acpi.c: At top level: sound/soc/soc-acpi.c:95:6: error: redefinition of &apos;snd_soc_acpi_find_package_from_hid&apos; 95 | bool snd_soc_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN],    |      ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ In file included from sound/soc/soc-acpi.c:9: include/sound/soc-acpi.h:44:1: note: previous definition of &apos;snd_soc_acpi_find_package_from_hid&apos;   with type &apos;bool(const u8 *, struct snd_soc_acpi_package_context *)&apos;   {aka &apos;_Bool(const unsigned char *,               struct snd_soc_acpi_package_context *)&apos;}   44 | snd_soc_acpi_find_package_from_hid(const u8 hid[ACPI_ID_LEN],      | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   sound/soc/soc-acpi.c:109:27: error: redefinition of   &apos;snd_soc_acpi_codec_list&apos;   109 | struct snd_soc_acpi_mach *snd_soc_acpi_codec_list(void *arg)       |                           ^~~~~~~~~~~~~~~~~~~~~~~In file included from sound/soc/soc-acpi.c:9:include/sound/soc-acpi.h:51:41: note: previous definition of&apos;snd_soc_acpi_codec_list&apos; with type &apos;struct snd_soc_acpi_mach *(void *)&apos;51 | static inline struct snd_soc_acpi_mach     *snd_soc_acpi_codec_list(void *arg)   | ^~~~~~~~~~~~~~~~~~~~~~~Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Reported-by: kernel test robot &lt;lkp@intel.com&gt;Link: https://lore.kernel.org/r/20220706205515.2485601-1-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Wed, 06 Jul 2022 20:55:14 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>f94fa840 - ASoC: amd: enable machine driver build for Jadeite platform</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#f94fa840</link>
        <description>ASoC: amd: enable machine driver build for Jadeite platformEnable machine driver build for Jadeite platform using ES8336 Codec.Signed-off-by: Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;Link: https://lore.kernel.org/r/20220701114107.1105948-6-Vijendar.Mukunda@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Fri, 01 Jul 2022 11:41:07 +0000</pubDate>
        <dc:creator>Vijendar Mukunda &lt;Vijendar.Mukunda@amd.com&gt;</dc:creator>
    </item>
<item>
        <title>2d7d9f36 - ASoC: amd: renoir: Add check for acp configuration flags</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/sound/soc/amd/Kconfig#2d7d9f36</link>
        <description>ASoC: amd: renoir: Add check for acp configuration flagsWe have SOF and generic ACP support enabled for Renoir platformson some machines. Since we have same PCI id used for probing, addcheck for machine configuration flag to avoid conflict with newerpci drivers. Such machine flag has been initialized via dmi matchon few Chrome machines. If no flag is specified probe and registerolder platform device.Signed-off-by: Ajit Kumar Pandey &lt;AjitKumar.Pandey@amd.com&gt;Link: https://lore.kernel.org/r/20220117115854.455995-7-AjitKumar.Pandey@amd.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/sound/soc/amd/Kconfig</description>
        <pubDate>Mon, 17 Jan 2022 11:58:54 +0000</pubDate>
        <dc:creator>Ajit Kumar Pandey &lt;AjitKumar.Pandey@amd.com&gt;</dc:creator>
    </item>
</channel>
</rss>
