<?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 fcp.c</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>bf4afc53b77aeaa48b5409da5c8da6bb4eff7f43 - Convert &apos;alloc_obj&apos; family to use the new default GFP_KERNEL argument</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#bf4afc53b77aeaa48b5409da5c8da6bb4eff7f43</link>
        <description>Convert &apos;alloc_obj&apos; family to use the new default GFP_KERNEL argumentThis was done entirely with mindless brute force, using    git grep -l &apos;\&lt;k[vmz]*alloc_objs*(.*, GFP_KERNEL)&apos; |        xargs sed -i &apos;s/\(alloc_objs*(.*\), GFP_KERNEL)/\1)/&apos;to convert the new alloc_obj() users that had a simple GFP_KERNELargument to just drop that argument.Note that due to the extreme simplicity of the scripting, any slightlymore complex cases spread over multiple lines would not be triggered:they definitely exist, but this covers the vast bulk of the cases, andthe resulting diff is also then easier to check automatically.For the same reason the &apos;flex&apos; versions will be done as a separateconversion.Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Sun, 22 Feb 2026 01:37:42 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>8934827db5403eae57d4537114a9ff88b0a8460f - Merge tag &apos;kmalloc_obj-treewide-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#8934827db5403eae57d4537114a9ff88b0a8460f</link>
        <description>Merge tag &apos;kmalloc_obj-treewide-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linuxPull kmalloc_obj conversion from Kees Cook: &quot;This does the tree-wide conversion to kmalloc_obj() and friends using  coccinelle, with a subsequent small manual cleanup of whitespace  alignment that coccinelle does not handle.  This uncovered a clang bug in __builtin_counted_by_ref(), so the  conversion is preceded by disabling that for current versions of  clang.  The imminent clang 22.1 release has the fix.  I&apos;ve done allmodconfig build tests for x86_64, arm64, i386, and arm. I  did defconfig builds for alpha, m68k, mips, parisc, powerpc, riscv,  s390, sparc, sh, arc, csky, xtensa, hexagon, and openrisc&quot;* tag &apos;kmalloc_obj-treewide-v7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:  kmalloc_obj: Clean up after treewide replacements  treewide: Replace kmalloc with kmalloc_obj for non-scalar types  compiler_types: Disable __builtin_counted_by_ref for Clang

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Sat, 21 Feb 2026 20:02:58 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>69050f8d6d075dc01af7a5f2f550a8067510366f - treewide: Replace kmalloc with kmalloc_obj for non-scalar types</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#69050f8d6d075dc01af7a5f2f550a8067510366f</link>
        <description>treewide: Replace kmalloc with kmalloc_obj for non-scalar typesThis is the result of running the Coccinelle script fromscripts/coccinelle/api/kmalloc_objs.cocci. The script is designed toavoid scalar types (which need careful case-by-case checking), andinstead replace kmalloc-family calls that allocate struct or unionobject instances:Single allocations:	kmalloc(sizeof(TYPE), ...)are replaced with:	kmalloc_obj(TYPE, ...)Array allocations:	kmalloc_array(COUNT, sizeof(TYPE), ...)are replaced with:	kmalloc_objs(TYPE, COUNT, ...)Flex array allocations:	kmalloc(struct_size(PTR, FAM, COUNT), ...)are replaced with:	kmalloc_flex(*PTR, FAM, COUNT, ...)(where TYPE may also be *VAR)The resulting allocations no longer return &quot;void *&quot;, instead returning&quot;TYPE *&quot;.Signed-off-by: Kees Cook &lt;kees@kernel.org&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Sat, 21 Feb 2026 08:49:23 +0100</pubDate>
        <dc:creator>Kees Cook &lt;kees@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d061251387903e8502843ac983553f0b2e098ef8 - Merge tag &apos;sound-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#d061251387903e8502843ac983553f0b2e098ef8</link>
        <description>Merge tag &apos;sound-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/soundPull sound updates from Takashi Iwai: &quot;It&apos;s been relatively calm for a new era; majority of changes are for  ASoC, mostly device-specific changes, while there are a bit of  cleanups in core stuff. A few SPI API and regmap updates are included  to be used by sound drivers, too.  Core:   - A few trivial cleanups about __free() and runtime PM macros   - Convert to new snd_seq_bus binding  ASoC:   - Generic SDCA support for reporting jack events   - Continuing platform support, cleanup and feature improvements for     AMD, Intel, Qualcomm and SOF code   - Platform description improvements for the Cirrus drivers   - Support for NXP i.MX952, Realtek RT1320 and RT5575, and Sophogo     CV1800B  HD- and USB-audio:   - Many quirks as usual&quot;* tag &apos;sound-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound: (341 commits)  ALSA: usb-audio: Add DSD support for iBasso DC04U  ALSA: mixer: oss: Add card disconnect checkpoints  ASoC: SOF: ipc4-control: Set correct error code in refresh_bytes_control  ASoC: SOF: Intel: select CONFIG_SND_HDA_EXT_CORE from SND_SOC_SOF_HDA_COMMON  ALSA: usb-audio: Add iface reset and delay quirk for AB13X USB Audio  ASoC: amd: maintainer information  ALSA: ctxfi: Add quirk for SE-300PCIE variant (160b:0102)  ALSA: hda/generic: fix typos in comments  ALSA: hda/realtek - Enable mute LEDs on HP ENVY x360 15-es0xxx  ALSA: hda/conexant: Add quirk for HP ZBook Studio G4  ASoC: fsl_asrc_dma: allocate memory from dma device  ASoC: fsl_asrc: Add support for i.MX952 platform  ASoC: fsl_asrc_m2m: Add option to start ASRC before DMA device for M2M  ASoC: dt-bindings: fsl,imx-asrc: Add support for i.MX952 platform  ALSA: oss: delete self assignment  ASoC: rockchip: spdif: Convert to FIELD_PREP  ASoC: rockchip: spdif: Fill IEC958 CS info per params  ASoC: rockchip: spdif: Add support for format S32_LE  ASoC: rockchip: spdif: Add support for set mclk rate  ASoC: rockchip: spdif: Swap PCM and DAI component registration order  ...

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Wed, 11 Feb 2026 20:43:00 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>03f705b9ca58b91c6dffe64875ea3d9a38cad9b5 - ALSA: usb-audio: Relax __free() variable declarations</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#03f705b9ca58b91c6dffe64875ea3d9a38cad9b5</link>
        <description>ALSA: usb-audio: Relax __free() variable declarationsWe used to have a variable declaration with __free() initialized withNULL.  This was to keep the old coding style rule, but recently it&apos;srelaxed and rather recommends to follow the new rule to declare inplace of use for __free() -- which avoids potential deadlocks or UAFswith nested cleanups.Although the current code has no bug, per se, let&apos;s follow the newstandard and move the declaration to the place of assignment (ordirectly assign the allocated result) instead of NULL initializations.Note that there are still a few remaining __free(kfree) with NULLinitializations; they are because of the code complexity (the datasize calculation).Fixes: 43d4940c944c (&quot;ALSA: usb: scarlett2: Clean ups with guard() and __free()&quot;)Fixes: 46757a3e7d50 (&quot;ALSA: FCP: Add Focusrite Control Protocol driver&quot;)Fixes: f7d306b47a24 (&quot;ALSA: usb-audio: Fix a DMA to stack memory bug&quot;)Signed-off-by: Takashi Iwai &lt;tiwai@suse.de&gt;Link: https://patch.msgid.link/20251216140634.171890-12-tiwai@suse.de

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Tue, 16 Dec 2025 15:06:33 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#a4a508df2aa34f8650afde54ea804321c618f45f</link>
        <description>Merge tag &apos;v6.18&apos; into nextSync up with the mainline to bring in the latest APIs.

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Sat, 13 Dec 2025 10:18:20 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7362b5b493102c6b71827c2da22117b475528f6d - Merge branch &apos;for-6.19/nintendo&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#7362b5b493102c6b71827c2da22117b475528f6d</link>
        <description>Merge branch &apos;for-6.19/nintendo&apos; into for-linus- switch to WQ_PERCPU workaueues (Marco Crivellari)- reduce potential initialization blocking time of hid-nintendo (Willy Huang)

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Tue, 02 Dec 2025 14:46:11 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>cb9f145f638d7afa633632a9290d6ad06caeb8ee - Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclark</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#cb9f145f638d7afa633632a9290d6ad06caeb8ee</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into msm-next-robclarkBack-merge drm-next to get caught up.Signed-off-by: Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Sat, 01 Nov 2025 13:47:30 +0100</pubDate>
        <dc:creator>Rob Clark &lt;robin.clark@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>55db64ddd6a12c5157a61419a11a18fc727e8286 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#55db64ddd6a12c5157a61419a11a18fc727e8286</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netCross-merge networking fixes after downstream PR (net-6.18-rc2).No conflicts or adjacent changes.Signed-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Thu, 16 Oct 2025 19:53:13 +0200</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>82ee50252dc891e3f3b32d923bb4f656d300b772 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#82ee50252dc891e3f3b32d923bb4f656d300b772</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.18-rc1.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Tue, 14 Oct 2025 11:31:49 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2acee98fcc61052d63fab4539fcb6ee677555645 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#2acee98fcc61052d63fab4539fcb6ee677555645</link>
        <description>Merge drm/drm-next into drm-intel-nextSync to v6.18-rc1.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Tue, 14 Oct 2025 09:37:11 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>9b966ae42235a88eaea714be09ff3d698535bdfe - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#9b966ae42235a88eaea714be09ff3d698535bdfe</link>
        <description>Merge drm/drm-next into drm-misc-nextUpdating drm-misc-next to the state of v6.18-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Mon, 13 Oct 2025 09:19:19 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>39e9d5f63075f4d54e3b59b8238478c32af92755 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf before 6.18-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#39e9d5f63075f4d54e3b59b8238478c32af92755</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf before 6.18-rc1Cross-merge BPF and other fixes after downstream PR.No conflicts.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Sun, 12 Oct 2025 03:27:47 +0200</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f088104d837a991c65e51fa30bb4196169b3244d - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#f088104d837a991c65e51fa30bb4196169b3244d</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerge in order to get the commit:  048832a3f400 (&quot;drm/i915: Refactor shmem_pwrite() to use kiocb and write_iter&quot;)To drm-intel-gt-next as there are followup fixes to be applied.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Tue, 16 Sep 2025 12:53:20 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2ace52718376fdb56aca863da2eebe70d7e2ddb1 - Merge branch &apos;objtool/core&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#2ace52718376fdb56aca863da2eebe70d7e2ddb1</link>
        <description>Merge branch &apos;objtool/core&apos;Bring in the UDB and objtool data annotations to avoid conflicts while further extending the bug exceptions.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Fri, 21 Nov 2025 11:21:20 +0100</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>f39b6c468c52745dbca9a842d91c8373fda208ab - Merge tag &apos;v6.18-rc6&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#f39b6c468c52745dbca9a842d91c8373fda208ab</link>
        <description>Merge tag &apos;v6.18-rc6&apos; into for-linusSync up with the mainline to bring in definition ofINPUT_PROP_HAPTIC_TOUCHPAD.

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Tue, 18 Nov 2025 08:16:55 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>4f38da1f027ea2c9f01bb71daa7a299c191b6940 - spi: Merge up v6.18-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#4f38da1f027ea2c9f01bb71daa7a299c191b6940</link>
        <description>spi: Merge up v6.18-rc1Ensure my CI has a sensible baseline.

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Mon, 13 Oct 2025 14:32:13 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>48a710760e10a4f36e11233a21860796ba204b1e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#48a710760e10a4f36e11233a21860796ba204b1e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesUpdating drm-misc-fixes to the state of v6.18-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Tue, 14 Oct 2025 10:59:58 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>fdfa38e95e1229ec2fb2f18540987c97f861d470 - Merge tag &apos;sound-fix-6.18-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound</title>
        <link>http://kernelsources.org:8080/source/history/linux/sound/usb/fcp.c#fdfa38e95e1229ec2fb2f18540987c97f861d470</link>
        <description>Merge tag &apos;sound-fix-6.18-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/soundPull sound fixes from Takashi Iwai: &quot;A few more small fixes for 6.18-rc1.  Most of changes are about ASoC Intel and SOF drivers, while a few  other device-specific fixes are found for HD-audio, USB-audio, ASoC  RT722VB and Meson&quot;* tag &apos;sound-fix-6.18-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound:  ASoC: rt722: add settings for rt722VB  ASoC: meson: aiu-encoder-i2s: fix bit clock polarity  ALSA: usb: fpc: replace kmalloc_array followed by copy_from_user with memdup_array_user  ALSA: hda/tas2781: Enable init_profile_id for device initialization  ALSA: emu10k1: Fix typo in docs  ALSA: hda/realtek: Add quirk for ASUS ROG Zephyrus Duo  ASoC: SOF: Intel: Read the LLP via the associated Link DMA channel  ASoC: SOF: ipc4-pcm: do not report invalid delay values  ASoC: SOF: sof-audio: add dev_dbg_ratelimited wrapper  ASoC: SOF: Intel: hda-pcm: Place the constraint on period time instead of buffer time  ASoC: SOF: ipc4-topology: Account for different ChainDMA host buffer size  ASoC: SOF: ipc4-topology: Correct the minimum host DMA buffer size  ASoC: SOF: ipc4-pcm: fix start offset calculation for chain DMA  ASoC: SOF: ipc4-pcm: fix delay calculation when DSP resamples  ASoC: SOF: ipc3-topology: Fix multi-core and static pipelines tear down  ALSA: hda/hdmi: Add pin fix for HP ProDesk model

            List of files:
            /linux/sound/usb/fcp.c</description>
        <pubDate>Fri, 10 Oct 2025 18:55:19 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
</channel>
</rss>
