<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>a8e7ef3cec99ba2487110e01d77a8a278593b3e9 - Merge tag &apos;sound-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#a8e7ef3cec99ba2487110e01d77a8a278593b3e9</link>
        <description>Merge tag &apos;sound-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/soundPull sound updates from Takashi Iwai: &quot;Nothing too thrilling here, but we see lots of driver updates and bug  fixes, including quirk additions and refactoring works, while there  have been little changes in the core functionality. Here are some  highlights:  Core:   - Add validation for the control API put callback   - Fixes in compress-offload API timestamp handling   - Continued ASoC core API cleanups  ASoC:   - Add support for bus keepers (for Apple devices in future)   - Enhancements to the SDCA support, including retaskable jacks   - Test improvements for Cirrus Logic drivers   - Lots of fixes for the NXP, nVidia and Qualcomm   - Support for AMD RPL DMIC, Cirrus Logic CS42L43 and CS47L47, nVidia     machines with CPCAP and WM8962  USB-audio:   - Quirks for Huawei Headset, Focusrite Novation, MV-Silicon, Studio     1824, Arturia AF16Rig, Hotone Audio, Feaulle Rainbow, PreSonus     AudioBox, Moondrop Ju Jiu, Scarlett 18i20, etc   - Extended mixer volume quirk handling   - UAF and other fixes for us144mkii, 6fire and caiaq drivers  HD-audio:   - Add quirks or fixes for Acer, Lenovo, HP, ASUS machines   - Fixes &amp; cleanups of GPIO helper code  Misc:   - Add suspend/resume support for multiple legacy ISA and Apple     drivers   - Further regression fixes for ctxfi driver&quot;* tag &apos;sound-7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: (359 commits)  ALSA: control: Validate buf_len before strnlen() in snd_ctl_elem_init_enum_names()  ALSA: usb-audio: Fix missing error handling for get_min_max*()  ALSA: hda/realtek - fixed speaker no sound update  ALSA: hda/realtek: Add quirk for Acer PT316-51S headset mic  ALSA: usb-audio: Exclude Scarlett 18i20 1st Gen from SKIP_IFACE_SETUP  ALSA: hda/realtek: Add quirk for Legion S7 15IMH  ALSA: hda/realtek: Add quirk for HP Spectre x360 14-ea  ALSA: caiaq: take a reference on the USB device in create_card()  ASoC: dt-bindings: rockchip: convert rk3399-gru-sound to DT Schema  ALSA: sscape: Add suspend and resume support  ALSA: sscape: Cache per-card resources for board reinitialization  ALSA: usb-audio: Do not expose sticky mixers  ALSA: usb-audio: Move volume control resolution check into a function  ALSA: usb-audio: Add error checks against get_min_max*()  ALSA: usb-audio: Add quirk for PreSonus AudioBox USB  ALSA: interwave: guard PM-only restore helpers with CONFIG_PM  ALSA: usb-audio: Evaluate packsize caps at the right place  ALSA: sc6000: Restore board setup across suspend  ALSA: sc6000: Keep the programmed board state in card-private data  ALSA: 6fire: fix use-after-free on disconnect  ...

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Wed, 15 Apr 2026 18:20:49 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>f365e47bfbe388b2dde411f8a016065274eee02f - Merge branch &apos;for-next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#f365e47bfbe388b2dde411f8a016065274eee02f</link>
        <description>Merge branch &apos;for-next&apos; into for-linusSigned-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Mon, 13 Apr 2026 07:18:36 +0200</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>84446536f63d471ab16b2faa25eeab1df21ace0a - ALSA: control: Verify put() result when in debug mode</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#84446536f63d471ab16b2faa25eeab1df21ace0a</link>
        <description>ALSA: control: Verify put() result when in debug modeThe put() operation is expected to return:1) 0 on success if no changes were made2) 1 on success if changes were made3) error code otherwiseCurrently 2) is usually ignored when writing control-operations. Whileforcing compliance is not an option right now, make it easier fordevelopers to adhere to the expectations and notice problems by loggingthem when CONFIG_SND_CTL_DEBUG is enabled.Due to large size of struct snd_ctl_elem_value, &apos;value_buf&apos; is providedas a reusable buffer for kctl-&gt;put() verification. This preventsexhausting the stack when verifying the operation.&gt;From user perspective, patch introduces a new trace/events category&apos;snd_ctl&apos; containing a single &apos;snd_ctl_put&apos; event type. Log sample:  amixer-1086    [003] .....    8.035939: snd_ctl_put: success: expected=0, actual=0 for ctl numid=1, iface=MIXER, name=&apos;Master Playback Volume&apos;, index=0, device=0, subdevice=0, card=0  amixer-1087    [003] .....    8.938721: snd_ctl_put: success: expected=1, actual=1 for ctl numid=1, iface=MIXER, name=&apos;Master Playback Volume&apos;, index=0, device=0, subdevice=0, card=0  amixer-1088    [003] .....    9.631470: snd_ctl_put: success: expected=1, actual=1 for ctl numid=1, iface=MIXER, name=&apos;Master Playback Volume&apos;, index=0, device=0, subdevice=0, card=0  amixer-1089    [000] .....    9.636786: snd_ctl_put: fail: expected=1, actual=0 for ctl numid=5, iface=MIXER, name=&apos;Loopback Mute&apos;, index=0, device=0, subdevice=0, card=0Signed-off-by: Cezary Rojewski &lt;cezary.rojewski@intel.com&gt;Reviewed-by: Mark Brown &lt;broonie@kernel.org&gt;Reviewed-by: Jaroslav Kysela &lt;perex@perex.cz&gt;Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;Link: https://patch.msgid.link/20260224205619.584795-1-cezary.rojewski@intel.com

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Tue, 24 Feb 2026 21:56:19 +0100</pubDate>
        <dc:creator>Cezary Rojewski &lt;cezary.rojewski@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c771600c6af14749609b49565ffb4cac2959710d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#c771600c6af14749609b49565ffb4cac2959710d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextWe need4ba4f1afb6a9 (&quot;perf: Generic hotplug support for a PMU with a scope&quot;)in order to land a i915 PMU simplification and a fix. That landed in 6.12and we are stuck at 6.9 so lets bump things forward.Signed-off-by: Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Wed, 05 Feb 2025 10:29:14 +0100</pubDate>
        <dc:creator>Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;</dc:creator>
    </item>
<item>
        <title>36ec807b627b4c0a0a382f0ae48eac7187d14b2b - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#36ec807b627b4c0a0a382f0ae48eac7187d14b2b</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.12 merge window.

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Fri, 20 Sep 2024 10:24:24 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>3daee2e4b3568f0ed88b0598df96547fcf21cb9b - Merge tag &apos;v6.10&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#3daee2e4b3568f0ed88b0598df96547fcf21cb9b</link>
        <description>Merge tag &apos;v6.10&apos; into nextSync up with mainline to bring in device_for_each_child_node_scoped()and other newer APIs.

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Tue, 16 Jul 2024 00:50:05 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a23e1966932464e1c5226cb9ac4ce1d5fc10ba22 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#a23e1966932464e1c5226cb9ac4ce1d5fc10ba22</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 6.11 merge window.

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 23:03:44 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6f47c7ae8c7afaf9ad291d39f0d3974f191a7946 - Merge tag &apos;v6.9&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#6f47c7ae8c7afaf9ad291d39f0d3974f191a7946</link>
        <description>Merge tag &apos;v6.9&apos; into nextSync up with the mainline to bring in the new cleanup API.

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Tue, 28 May 2024 06:37:18 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>afeea2758b4f1210361ce2a91d8fa3e7df606ad2 - Merge drm-misc-next-2024-07-04 into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#afeea2758b4f1210361ce2a91d8fa3e7df606ad2</link>
        <description>Merge drm-misc-next-2024-07-04 into drm-misc-next-fixesLet&apos;s start the drm-misc-next-fixes cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Thu, 04 Jul 2024 15:19:33 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d754ed2821fd9675d203cb73c4afcd593e28b7d0 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#d754ed2821fd9675d203cb73c4afcd593e28b7d0</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to v6.10-rc3.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Wed, 19 Jun 2024 10:38:31 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>89aa02edaa30e4327ebc8fca9b80795bbfd4ce9b - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#89aa02edaa30e4327ebc8fca9b80795bbfd4ce9b</link>
        <description>Merge drm/drm-next into drm-xe-nextNeeded to get tracing cleanup and add mmio tracing series.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Wed, 12 Jun 2024 17:31:42 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>92815da4576a495cb6362cdfb132152fccc2222d - Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#92815da4576a495cb6362cdfb132152fccc2222d</link>
        <description>Merge remote-tracking branch &apos;drm-misc/drm-misc-next&apos; into HEADMerge drm-misc-next tree into the msm-next tree in order to be able touse HDMI connector framework for the MSM HDMI driver.

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Wed, 12 Jun 2024 15:51:59 +0200</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>375c4d1583948cf2439833e4a85d5a0aee853895 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#375c4d1583948cf2439833e4a85d5a0aee853895</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s start the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Mon, 27 May 2024 11:08:31 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>60a2f25de7b8b785baee2932db932ae9a5b8c86d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#60a2f25de7b8b785baee2932db932ae9a5b8c86d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextSome display refactoring patches are needed in order to allow conflict-less merging.Signed-off-by: Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Thu, 16 May 2024 09:33:01 +0200</pubDate>
        <dc:creator>Tvrtko Ursulin &lt;tursulin@ursulin.net&gt;</dc:creator>
    </item>
<item>
        <title>0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99 - Merge branch &apos;tip/x86/cpu&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#0c8ea05e9b3d8e5287e2a968f2a2e744dfd31b99</link>
        <description>Merge branch &apos;tip/x86/cpu&apos;The Lunarlake patches rely on the new VFM stuff.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Thu, 04 Jul 2024 16:00:24 +0200</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>594ce0b8a998aa4d05827cd7c0d0dcec9a1e3ae2 - Merge topic branches &apos;clkdev&apos; and &apos;fixes&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#594ce0b8a998aa4d05827cd7c0d0dcec9a1e3ae2</link>
        <description>Merge topic branches &apos;clkdev&apos; and &apos;fixes&apos; into for-linus

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Mon, 10 Jun 2024 13:03:21 +0200</pubDate>
        <dc:creator>Russell King (Oracle) &lt;rmk+kernel@armlinux.org.uk&gt;</dc:creator>
    </item>
<item>
        <title>f73a058be5d70dd81a43f16b2bbff4b1576a7af8 - Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#f73a058be5d70dd81a43f16b2bbff4b1576a7af8</link>
        <description>Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixesv6.10-rc1 is released, forward from v6.9Signed-off-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Tue, 28 May 2024 22:21:34 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>b228ab57e51b62663a80ca820c87ba2650583f08 - Merge branch &apos;master&apos; into mm-stable</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#b228ab57e51b62663a80ca820c87ba2650583f08</link>
        <description>Merge branch &apos;master&apos; into mm-stable

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Mon, 18 Mar 2024 17:55:12 +0100</pubDate>
        <dc:creator>Andrew Morton &lt;akpm@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>5e28061128646febc71c0942609619e29f41ff00 - Merge branch &apos;master&apos; into mm-stable</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#5e28061128646febc71c0942609619e29f41ff00</link>
        <description>Merge branch &apos;master&apos; into mm-stable

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Mon, 18 Mar 2024 17:47:52 +0100</pubDate>
        <dc:creator>Andrew Morton &lt;akpm@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>33e02dc69afbd8f1b85a51d74d72f139ba4ca623 - Merge tag &apos;sound-6.10-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/core/Makefile#33e02dc69afbd8f1b85a51d74d72f139ba4ca623</link>
        <description>Merge tag &apos;sound-6.10-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/soundPull sound updates from Takashi Iwai: &quot;This one became bigger than usual, not in the total size but rather  containing lots of small changes all over the places.  The majority of changes are about ASoC, especially SOF / Intel stuff,  and we see an interesting work for ASoC DAPM graph visualization,  while there are many other code cleanup and refactoring, too.  Core:   - A deadlock fix at device disconnection   - A new tool dapm-graph for visualising the DAPM state  ASoC:   - Large updates throughout the Intel audio drivers   - Fixes and clarifications for the DAPM documentation   - Cleanups of accessors for driver data, module labelling, and for     constification   - Modernsation and cleanup work in the Mediatek drivers   - Several fixes and features for the DaVinci I2S driver   - New drivers for several AMD and Intel platforms, Nuvoton NAU8325,     Rockchip RK3308 and Texas Instruments PCM6240  HD-audio:   - Cleanup for CONFIG_PM dependencies   - Cirrus HD-audio codec fixes and quirks  Others:   - Series of tree-wide fixes in Makefiles to use *-y   - Additions of missing module descriptions   - Scarlett2 USB mixer enhancements   - A series of legacy emu10k1 fixes and improvements&quot;* tag &apos;sound-6.10-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: (603 commits)  ALSA: hda/realtek: Drop doubly quirk entry for 103c:8a2e  ALSA: hda/realtek - fixed headset Mic not show  ASoC: SOF: amd: Fix build error with built-in config  ALSA: scarlett2: Increase mixer range to +12dB  ALSA: scarlett2: Add S/PDIF source selection controls  ALSA: core: Remove superfluous CONFIG_PM  ALSA: Fix deadlocks with kctl removals at disconnection  ASoC: audio-graph-card2: call of_node_get() before of_get_next_child()  ASoC: SOF: amd: Correct spaces in Makefile  ASoC: rt715-sdca-sdw: Fix wrong complete waiting in rt715_dev_resume()  ASoC: Intel: sof_sdw_rt_amp: use dai parameter  ASoC: Intel: sof_sdw: add dai parameter to rtd_init callback  ASoC: Intel: sof_sdw: use .controls/.widgets to add controls/widgets  ASoC: Intel: sof_sdw: add controls and dapm widgets in codec_info  ASoC: Intel: sof_sdw: use generic name for controls/widgets  ASoC: Intel: sof_sdw_cs_amp: rename Speakers to Speaker  ASoC: Intel: maxim-common: change max98373 data to static  ASoC: Intel: sof_sdw: add max98373 dapm routes  ASoC: Intel: sof_rt5682: use max_98373_dai_link function  ASoC: Intel: sof_nau8825: use max_98373_dai_link function  ...

            List of files:
            /linux/sound/core/Makefile</description>
        <pubDate>Wed, 15 May 2024 19:02:36 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
</channel>
</rss>
