<?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 Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>59e6295fac26b8e85c1ea859cdd89fa1e47519d7 - Merge tag &apos;driver-core-7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#59e6295fac26b8e85c1ea859cdd89fa1e47519d7</link>
        <description>Merge tag &apos;driver-core-7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-corePull driver core updates from Danilo Krummrich: &quot;container_of:   - Apply typeof_member(), remove the local __mptr variable to     eliminate variable shadowing warnings on nested container_of()     calls, and remove unnecessary parentheses  core:   - Add driver name to probe debug print for initcall_debug   - Avoid repeatedly printing the same &apos;Fixed dependency cycle&apos; log   - Unwind device_add() on attribute creation failure in     attribute_container_add_class_device()   - Remove statistics group if encryption group creation fails in     transport_add_class_device()  debugfs:   - Fix lockdown check for mmap_prepare()   - Warn if file creation failed due to uninitialized debugfs  device property:   - Implement fw_devlink support for software nodes by adding     software_node_add_links(), which creates fwnode links from     DEV_PROP_REF properties to enable automatic probe ordering. Add     kunit-managed fwnode helpers and test coverage   - Fix infinite loop in fwnode_for_each_child_node() when the     secondary fwnode has more than one child. Add test cases   - Fix out-of-bounds access in software_node_get_reference_args() when     called with index -1 (UINT_MAX)   - Refactor to use RAII approach with __free()   - Add Bartosz Golaszewski as software node reviewer  firmware loader:   - Fix race where a sysfs fallback request can complete before being     queued as pending, leading to a use-after-free on the next fallback     request   - Reject 0-size built-in firmware and fail the build on empty     firmware files in CONFIG_EXTRA_FIRMWARE  kobject:   - Provide __KOBJ_ATTR() and __KOBJ_ATTR_RO/WO() initialization macros     and allow the constification of kobject attributes, enabling them     to reside in read-only memory  platform:   - Provide platform_device_set_of_node(), platform_device_set_fwnode(),     and platform_device_set_of_node_from_dev() helpers that encapsulate     firmware node reference counting for dynamically allocated platform     devices     Convert all in-tree users that manually assigned dev.of_node or     dev.fwnode, fixing a pre-existing refcount bug in powermac. Switch     to counting references of all firmware node types, not only OF     nodes   - Unify the release path for dynamically allocated platform devices     by removing platform_device_release_full(). Amend the fwnode setter     API contract to warn if a primary software node is overwritten. Add     KUnit tests for correct software node removal on device     unregistration  Rust:   - Auxiliary:       - Add registration_data_with() closure-based API for invariant         ForLt types   - Debugfs:       - Migrate BinaryWriter and BinaryReaderMut trait requirements         from kernel::transmute traits to zerocopy traits   - Device:       - Add BoundInternal device context and InternalBoundContext trait         for bus abstractions that need internal access to a bound         device.       - Make the lifetime on Core and CoreInternal invariant to prevent         coercion to shorter lifetimes   - Devres:       - Fix race between concurrent revokers where the losing revoker         could return before the winning revoker finished dropping the         inner data, causing use-after-free.       - Ensure revocation is complete before the device finishes         unbinding by making the synchronization bidirectional.       - Add DevresLt&lt;F: ForLt&gt;, a wrapper around Devres that shortens         &apos;static back to the caller&apos;s borrow scope. Implement ForLt and         CovariantForLt for Bar, IoMem, and ExclusiveIoMem   - Driver:       - Switch from index-based to pointer-based device ID info lookup,         storing static references in driver_data. Centralize device ID         handling in device_id.rs, removing the open-coded ACPI/OF         matching logic and duplicate ID table from driver.rs   - I/O:       - Make I/O regions typed (with a dynamically-sized Region type         for the existing untyped case), create view types representing         subregions of a mapped I/O region, and add io_project!() for         safely creating subviews.       - Split Io into a base trait (IoBase) and an extension trait (Io)         with a blanket implementation, preventing implementers from         overriding provided methods that unsafe code relies on.       - Add a SysMem backend for shared system memory with volatile         access, and make Coherent implement Io via an I/O view type.         Add IoSysMap as sum type of Mmio and SysMem. Add copying         methods (memcpy_{from,to}io()) and read_val()/write_val() for         typed access.       - Replace dma_read!()/dma_write!() with io_read!()/io_write!()         for primitives and copying methods for aggregates; drop the old         macros. Convert nova-core to use I/O projection.       - Fix internal shortcut rule dispatch in the register!() macro,         remove unused rule arguments, and use path fragments for alias         destinations   - IRQ:       - Make irq::Registration compatible with lifetime-bound drivers         by removing the &apos;static bound on Handler/ThreadedHandler and         replacing Devres&lt;RegistrationInner&gt; with direct         request_irq()/free_irq() calls. Handlers can now directly own         lifetime-bound device resources   - PCI:       - Convert IrqVectorRegistration to a lifetime-annotated owning         type, giving drivers explicit control over the allocation         lifetime. IrqVector embeds a resolved IrqRequest, making the         conversion infallible. Remove the redundant         request_irq()/request_threaded_irq() wrappers from pci::Device.       - Add pci_irq_type() C helper and expose it via irq_type() on         IrqVectorRegistration and IrqVector, returning PCI_IRQ_MSIX,         PCI_IRQ_MSI, or PCI_IRQ_INTX.       - Mark pci::Device refcount methods inline   - Serdev:       - Add Rust abstractions for the serial device bus, including         serdev::Driver trait, serdev::Device wrapping struct         serdev_device, and serdev::Adapter implementing         RegistrationOps. Includes a sample driver. Markus Probst takes         over as serdev maintainer for both C and Rust code   - Misc:       - Split ForLt into a base trait (providing the Of&lt;&apos;a&gt; GAT) and an         unsafe CovariantForLt subtrait guaranteeing covariance,         enabling invariant types (e.g. those containing Mutex&lt;&amp;&apos;bound T&gt;)         to participate in the ForLt abstraction.       - Fix Coherent read past EOF returning -ERANGE instead of zero.       - Fix firmware example UB by avoiding null-pointer ARef  misc:   - Avoid iattr allocation in kernfs listxattr by using     kernfs_iattrs_noalloc().   - Unregister SoC bus on early device registration failure.   - Remove unused DMA_FENCE_TRACE Kconfig symbol.   - Fix /sys/module path in comment.   - Refactor ISA bus init to remove nested blocks.   - Remove redundant nodemask clears in numa_init().   - Add kernel-doc for fwnode_operations and sys_soc.h, mark     internal property data as private for kernel-doc, and add     property.h/fwnode.h to driver-api infrastructure docs.   - Add MAINTAINERS entry for sys_soc.h&quot;* tag &apos;driver-core-7.3-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core: (129 commits)  rust: pci: expose the allocated interrupt type  PCI: Add pci_irq_type() to query the allocated interrupt type  rust: pci: remove request_irq() and request_threaded_irq() from Device  rust: pci: resolve IRQ in index() and embed IrqRequest in IrqVector  rust: pci: convert IrqVectorRegistration to a lifetime-managed owning type  kernfs: avoid iattr allocation in listxattr  rust: serdev: use ThisModule::as_ptr() instead of field access  ACPI/IORT: use platform_device_set_fwnode()  ACPI/APMT: use platform_device_set_fwnode()  firmware_loader: do not queue completed sysfs fallback requests  rust: pci: Mark Device refcount methods inline  rust: irq: make Registration compatible with lifetime-bound drivers  rust: net/phy: remove expansion from doc  rust: dma: return zero for Coherent reads past EOF  rust: io: register: use path fragment for alias destination  rust: io: register: remove unused rule arguments  rust: io: register: dispatch shortcut rules internally  MAINTAINERS: add sys_soc.h to DRIVER CORE  rust: debugfs: remove unsafe blocks from traits impl for Vec  rust: debugfs: migrate debugfs traits requirements to zerocopy  ...

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Wed, 19 Aug 2026 19:42:18 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>4b2c9156d312b36d67265305c68088f542dc0933 - samples: rust: add Rust serial device bus sample device driver</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#4b2c9156d312b36d67265305c68088f542dc0933</link>
        <description>samples: rust: add Rust serial device bus sample device driverAdd a sample Rust serial device bus device driver illustrating the usageof the serial device bus abstractions.This drivers probes through either a match of device / driver name or amatch within the OF ID table.Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Signed-off-by: Markus Probst &lt;markus.probst@posteo.de&gt;Link: https://patch.msgid.link/20260718-rust_serdev-v16-2-5809384d2e1b@posteo.deSigned-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Sat, 18 Jul 2026 17:33:14 +0200</pubDate>
        <dc:creator>Markus Probst &lt;markus.probst@posteo.de&gt;</dc:creator>
    </item>
<item>
        <title>5c8cbca290acdd49a694b36c0af76ba0c00bbf12 - Merge branch &apos;20260507-ubwc-rework-v4-4-c19593d20c1d@oss.qualcomm.com&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into HEAD</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#5c8cbca290acdd49a694b36c0af76ba0c00bbf12</link>
        <description>Merge branch &apos;20260507-ubwc-rework-v4-4-c19593d20c1d@oss.qualcomm.com&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux into HEADMerge the branch with the soc/qcom changes, required for the next UBWCpatches.Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Thu, 21 May 2026 22:36:50 +0200</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>8edf8b09fc44990977b3fbcb708035b1740d0b7e - Merge drm/drm-next into drm-intel-gt-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#8edf8b09fc44990977b3fbcb708035b1740d0b7e</link>
        <description>Merge drm/drm-next into drm-intel-gt-nextBackmerging to pull in commit 5401b9adebc9 (&quot;i915: don&apos;t usea vma that didn&apos;t match the context VM&quot;) to revert it.Signed-off-by: Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Tue, 12 May 2026 10:16:35 +0200</pubDate>
        <dc:creator>Joonas Lahtinen &lt;joonas.lahtinen@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1655f6895a896eb632ca8a019259bc5d358a9712 - Merge tag &apos;timers-v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#1655f6895a896eb632ca8a019259bc5d358a9712</link>
        <description>Merge tag &apos;timers-v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/daniel.lezcano/linux into timers/clocksource  - Added the DT bindings for the compatible string &apos;fsl,imx25-epit&apos;    (Frank Li)  - Made the rttm_cs variable static for the rtl otto timer driver    (Krzysztof Kozlowski)  - Fixed error return code handling in the sun5i timer driver (Chen Ni)  - Made the timer-of and the mmio code compatible with modules (Daniel    Lezcano)Link: https://lore.kernel.org/151feae1-39ba-4abd-a9f9-9bff377a2cd8@oss.qualcomm.com

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Sun, 12 Apr 2026 22:33:39 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Mon, 20 Apr 2026 03:28:57 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0421ccdfad0d92713a812a5aeb7d07b0ea7213c8 - Merge tag &apos;v7.0-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#0421ccdfad0d92713a812a5aeb7d07b0ea7213c8</link>
        <description>Merge tag &apos;v7.0-rc3&apos; into nextSync up with the mainline to brig up the latest changes, specificallychanges to ALPS driver.

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Thu, 12 Mar 2026 18:44:42 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>3e9e952bb3139ad1e08f3e1960239c2988ab90c9 - Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#3e9e952bb3139ad1e08f3e1960239c2988ab90c9</link>
        <description>Merge branch &apos;for-7.1-printf-kunit-build&apos; into for-linus

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Mon, 20 Apr 2026 13:41:28 +0200</pubDate>
        <dc:creator>Petr Mladek &lt;pmladek@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>42d3b66d4cdbacfc9d120d2301b8de89cc29a914 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#42d3b66d4cdbacfc9d120d2301b8de89cc29a914</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 7.00-rc3. Important ahead GPU SVM merging THPsupport.Signed-off-by: Matthew Brost &lt;matthew.brost@intel.com&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Thu, 12 Mar 2026 15:17:56 +0100</pubDate>
        <dc:creator>Matthew Brost &lt;matthew.brost@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>f09812b85fa6f41058bcc46e70ac406bf9b0493a - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#f09812b85fa6f41058bcc46e70ac406bf9b0493a</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.0-rc1 which contains a few treewide changes affecting i915.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Wed, 25 Feb 2026 12:23:04 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>8b85987d3cf50178f67618122d9f3bb202f62f42 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#8b85987d3cf50178f67618122d9f3bb202f62f42</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s merge 7.0-rc1 to start the new drm-misc-next windowSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Mon, 23 Feb 2026 11:48:20 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#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/samples/rust/Kconfig</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>c6e62d002b7f0613f02d8707c80f2a7bd66808a0 - Merge tag &apos;driver-core-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#c6e62d002b7f0613f02d8707c80f2a7bd66808a0</link>
        <description>Merge tag &apos;driver-core-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-corePull driver core updates from Danilo Krummrich: &quot;Bus:   - Ensure bus-&gt;match() is consistently called with the device lock     held   - Improve type safety of bus_find_device_by_acpi_dev()  Devtmpfs:   - Parse &apos;devtmpfs.mount=&apos; boot parameter with kstrtoint() instead of     simple_strtoul()   - Avoid sparse warning by making devtmpfs_context_ops static  IOMMU:   - Do not register the qcom_smmu_tbu_driver in arm_smmu_device_probe()  MAINTAINERS:   - Add the new driver-core mailing list (driver-core@lists.linux.dev)     to all relevant entries   - Add missing tree location for &quot;FIRMWARE LOADER (request_firmware)&quot;   - Add driver-model documentation to the &quot;DRIVER CORE&quot; entry   - Add missing driver-core maintainers to the &quot;AUXILIARY BUS&quot; entry  Misc:   - Change return type of attribute_container_register() to void; it     has always been infallible   - Do not export sysfs_change_owner(), sysfs_file_change_owner() and     device_change_owner()   - Move devres_for_each_res() from the public devres header to     drivers/base/base.h   - Do not use a static struct device for the faux bus; allocate it     dynamically  Revocable:   - Patches for the revocable synchronization primitive have been     scheduled for v7.0-rc1, but have been reverted as they need some     more refinement  Rust:   - Device:      - Support dev_printk on all device types, not just the core Device        struct; remove now-redundant .as_ref() calls in dev_* print        calls   - Devres:      - Introduce an internal reference count in Devres&lt;T&gt; to avoid a        deadlock condition in case of (indirect) nesting   - DMA:      - Allow drivers to tune the maximum DMA segment size via        dma_set_max_seg_size()   - I/O:      - Introduce the concept of generic I/O backends to handle        different kinds of device shared memory through a common        interface.        This enables higher-level concepts such as register        abstractions, I/O slices, and field projections to be built        generically on top.        In a first step, introduce the Io, IoCapable&lt;T&gt;, and IoKnownSize        trait hierarchy for sharing a common interface supporting offset        validation and bound-checking logic between I/O backends.      - Refactor MMIO to use the common I/O backend infrastructure   - Misc:      - Add __rust_helper annotations to C helpers for inlining into        Rust code      - Use &quot;kernel vertical&quot; style for imports      - Replace kernel::c_str! with C string literals      - Update ARef imports to use sync::aref      - Use pin_init::zeroed() for struct auxiliary_device_id and        debugfs file_operations initialization      - Use LKMM atomic types in debugfs doc-tests      - Various minor comment and documentation fixes   - PCI:      - Implement PCI configuration space accessors using the common I/O        backend infrastructure      - Document pci::Bar device endianness assumptions   - SoC:      - Abstractions for struct soc_device and struct soc_device_attribute      - Sample driver for soc::Device&quot;* tag &apos;driver-core-7.0-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/driver-core/driver-core: (79 commits)  rust: devres: fix race condition due to nesting  rust: dma: add missing __rust_helper annotations  samples: rust: pci: Remove some additional `.as_ref()` for `dev_*` print  Revert &quot;revocable: Revocable resource management&quot;  Revert &quot;revocable: Add Kunit test cases&quot;  Revert &quot;selftests: revocable: Add kselftest cases&quot;  driver core: remove device_change_owner() export  sysfs: remove exports of sysfs_*change_owner()  driver core: disable revocable code from build  revocable: Add KUnit test for concurrent access  revocable: fix SRCU index corruption by requiring caller-provided storage  revocable: Add KUnit test for provider lifetime races  revocable: Fix races in revocable_alloc() using RCU  driver core: fix inverted &quot;locked&quot; suffix of driver_match_device()  rust: io: move MIN_SIZE and io_addr_assert to IoKnownSize  rust: pci: re-export ConfigSpace  rust: dma: allow drivers to tune max segment size  gpu: tyr: remove redundant `.as_ref()` for `dev_*` print  rust: auxiliary: use `pin_init::zeroed()` for device ID  rust: debugfs: use pin_init::zeroed() for file_operations  ...

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Thu, 12 Feb 2026 02:43:59 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>ec496f77b4c11036cc835d6f045fb5e5ef1e6530 - Merge branch &apos;for-6.20/sony&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#ec496f77b4c11036cc835d6f045fb5e5ef1e6530</link>
        <description>Merge branch &apos;for-6.20/sony&apos; into for-linus- Support for Rock band 4 PS4 and PS5 guitars (Rosalie Wanders)

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Mon, 09 Feb 2026 17:33:26 +0100</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>cc4adab164b772a34b3340d644b7c4728498581e - Merge tag &apos;v6.19-rc1&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#cc4adab164b772a34b3340d644b7c4728498581e</link>
        <description>Merge tag &apos;v6.19-rc1&apos; into msm-nextMerge Linux 6.19-rc1 in order to catch up with other changes (e.g. UBWCconfig database defining UBWC_6).Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Tue, 20 Jan 2026 23:06:55 +0100</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>d43a12e474351161bb6d7e2a17ab56f591b9302d - rust: Add SoC Driver Sample</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#d43a12e474351161bb6d7e2a17ab56f591b9302d</link>
        <description>rust: Add SoC Driver SampleShows registration of a SoC device upon receipt of a probe.Signed-off-by: Matthew Maurer &lt;mmaurer@google.com&gt;Link: https://patch.msgid.link/20251226-soc-bindings-v4-3-2c2fac08f820@google.comSigned-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Fri, 26 Dec 2025 21:17:09 +0100</pubDate>
        <dc:creator>Matthew Maurer &lt;mmaurer@google.com&gt;</dc:creator>
    </item>
<item>
        <title>5add3c3c280a35f7e258e9cef7607db5a2e56fdc - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#5add3c3c280a35f7e258e9cef7607db5a2e56fdc</link>
        <description>Merge drm/drm-next into drm-xe-nextBackmerging to bring in 6.19-rc1. An important upstream bugfix andto help unblock PTL CI.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Fri, 19 Dec 2025 11:51:22 +0100</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ec439c38013550420aecc15988ae6acb670838c1 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.19-rc1</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#ec439c38013550420aecc15988ae6acb670838c1</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf after 6.19-rc1Cross-merge BPF and other fixes after downstream PR.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Wed, 17 Dec 2025 06:29:38 +0100</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b8304863a3990d0f18c38e5b94191830a63ee1af - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#b8304863a3990d0f18c38e5b94191830a63ee1af</link>
        <description>Merge drm/drm-next into drm-intel-nextSync-up some display code needed for Async flips refactor.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Mon, 15 Dec 2025 14:24:02 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>7f790dd21a931c61167f7bdc327aecf2cebad327 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/samples/rust/Kconfig#7f790dd21a931c61167f7bdc327aecf2cebad327</link>
        <description>Merge drm/drm-next into drm-misc-nextLet&apos;s kickstart the v6.20 (7.0?) release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/samples/rust/Kconfig</description>
        <pubDate>Mon, 15 Dec 2025 09:27:39 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
</channel>
</rss>
