<?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>67f8bc848ee31831336bd478e57d2f993551902e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#67f8bc848ee31831336bd478e57d2f993551902e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesLet&apos;s start the 7.3 drm-misc-fixes cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Tue, 01 Sep 2026 09:38:51 +0200</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<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/drivers/tty/serdev/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/drivers/tty/serdev/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>99f59aa82341c8491a1b94c5dd9c666fe979a479 - rust: add basic serial device bus abstractions</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#99f59aa82341c8491a1b94c5dd9c666fe979a479</link>
        <description>rust: add basic serial device bus abstractionsImplement the basic serial device bus abstractions required to write aserial device bus device driver with or without the need for initial devicedata. This includes the following data structures:The `serdev::Driver` trait represents the interface to the driver.The `serdev::Device` abstraction represents a `struct serdev_device`.In order to provide the Serdev specific parts to a generic`driver::Registration` the `driver::RegistrationOps` trait isimplemented by `serdev::Adapter`.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-1-5809384d2e1b@posteo.deSigned-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Sat, 18 Jul 2026 17:33:11 +0200</pubDate>
        <dc:creator>Markus Probst &lt;markus.probst@posteo.de&gt;</dc:creator>
    </item>
<item>
        <title>c39f2d9db0fd81ea20bb5cce9b3f082ca63753e2 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#c39f2d9db0fd81ea20bb5cce9b3f082ca63753e2</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare second round of input updates for 5.3 merge window.

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Sat, 20 Jul 2019 06:07:56 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>ecb41832bd2a7a3f8ac93527cec5e51e3827daed - Merge tag &apos;v5.2&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#ecb41832bd2a7a3f8ac93527cec5e51e3827daed</link>
        <description>Merge tag &apos;v5.2&apos; into nextSync up with mainline to resolve conflicts in iforce driver.

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Mon, 15 Jul 2019 18:42:32 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>74acee309fb2a434dce215d44014e6f8e06975ae - Merge branches &apos;for-5.2/fixes&apos;, &apos;for-5.3/doc&apos;, &apos;for-5.3/ish&apos;, &apos;for-5.3/logitech&apos; and &apos;for-5.3/wacom&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#74acee309fb2a434dce215d44014e6f8e06975ae</link>
        <description>Merge branches &apos;for-5.2/fixes&apos;, &apos;for-5.3/doc&apos;, &apos;for-5.3/ish&apos;, &apos;for-5.3/logitech&apos; and &apos;for-5.3/wacom&apos; into for-linus

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Wed, 10 Jul 2019 01:39:57 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>355a47ae7ebcf9d605aa809b259d380422e81b8d - Merge remote-tracking branch &apos;drm/drm-next&apos; into drm-misc-next-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#355a47ae7ebcf9d605aa809b259d380422e81b8d</link>
        <description>Merge remote-tracking branch &apos;drm/drm-next&apos; into drm-misc-next-fixesSome fixes have been accidentally pushed to this, so I cannot fost-forward.Required to pull in the remove-fbcon-notifiers fixes.Signed-off-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Wed, 26 Jun 2019 12:22:54 +0200</pubDate>
        <dc:creator>Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>860dbce3d8dd90cb9e909c58fa79808766243651 - Merge branch &apos;master&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#860dbce3d8dd90cb9e909c58fa79808766243651</link>
        <description>Merge branch &apos;master&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Sun, 02 Jun 2019 08:46:11 +0200</pubDate>
        <dc:creator>Yoshinori Sato &lt;ysato@users.sourceforge.jp&gt;</dc:creator>
    </item>
<item>
        <title>2491b544ff3aa9717d427033206fa793be53429d - Merge drm/drm-next into drm-intel-next-queued</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#2491b544ff3aa9717d427033206fa793be53429d</link>
        <description>Merge drm/drm-next into drm-intel-next-queuedGet the HDR dependencies originally merged via drm-misc. Sync up alli915 changes applied via other trees. And get v5.2-rc2 as the baseline.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Tue, 28 May 2019 10:07:59 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>374ed5429346a021c8e2d26fafce14c5b15dedd0 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#374ed5429346a021c8e2d26fafce14c5b15dedd0</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging 5.2-rc1 to -misc-next for robherSigned-off-by: Sean Paul &lt;seanpaul@chromium.org&gt;

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Wed, 22 May 2019 22:08:21 +0200</pubDate>
        <dc:creator>Sean Paul &lt;seanpaul@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>f29f24b5568fd6169e0363c78f1a80db38d0e7e9 - Merge branch &apos;fixes-dra7&apos; into fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#f29f24b5568fd6169e0363c78f1a80db38d0e7e9</link>
        <description>Merge branch &apos;fixes-dra7&apos; into fixes

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Mon, 20 May 2019 17:32:11 +0200</pubDate>
        <dc:creator>Tony Lindgren &lt;tony@atomide.com&gt;</dc:creator>
    </item>
<item>
        <title>73ee89436047dc58005bed7d1ded679c35292164 - Merge tag &apos;v5.2-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into fbdev-for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#73ee89436047dc58005bed7d1ded679c35292164</link>
        <description>Merge tag &apos;v5.2-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into fbdev-for-nextLinux 5.2-rc1Sync with upstream (which now contains fbdev-v5.2 changes) toprepare a base for fbdev-v5.3 changes.

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Mon, 20 May 2019 15:31:34 +0200</pubDate>
        <dc:creator>Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;</dc:creator>
    </item>
<item>
        <title>eceb995e04b74204c73f9dd0ccb19061d5082063 - Merge tag &apos;v5.2-rc1&apos; into spi-5.3</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#eceb995e04b74204c73f9dd0ccb19061d5082063</link>
        <description>Merge tag &apos;v5.2-rc1&apos; into spi-5.3Linux 5.2-rc1

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Mon, 20 May 2019 12:54:21 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>96d82e9d0dc799bb382ed0fe9db30c79c3a9f3b9 - Merge tag &apos;v5.2-rc1&apos; into regulator-5.3</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#96d82e9d0dc799bb382ed0fe9db30c79c3a9f3b9</link>
        <description>Merge tag &apos;v5.2-rc1&apos; into regulator-5.3Linux 5.2-rc1

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Mon, 20 May 2019 12:54:11 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>1c7c3237c0cc4ad3c7b0df458290c8e2a652f178 - Merge tag &apos;v5.2-rc1&apos; into asoc-5.3</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#1c7c3237c0cc4ad3c7b0df458290c8e2a652f178</link>
        <description>Merge tag &apos;v5.2-rc1&apos; into asoc-5.3Linux 5.2-rc1

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Mon, 20 May 2019 12:53:50 +0200</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>00f5764dbb040188e5dce2cd9e648360886b045c - Merge branch &apos;linus&apos; into x86/urgent, to pick up dependent changes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#00f5764dbb040188e5dce2cd9e648360886b045c</link>
        <description>Merge branch &apos;linus&apos; into x86/urgent, to pick up dependent changesSigned-off-by: Ingo Molnar &lt;mingo@kernel.org&gt;

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Thu, 16 May 2019 09:04:48 +0200</pubDate>
        <dc:creator>Ingo Molnar &lt;mingo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>b3a5e648f5917ea508ecab9a629028b186d38eae - Merge tag &apos;tty-5.2-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#b3a5e648f5917ea508ecab9a629028b186d38eae</link>
        <description>Merge tag &apos;tty-5.2-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/ttyPull tty/serial updates from Greg KH: &quot;Here is the &quot;big&quot; set of tty/serial driver patches for 5.2-rc1.  It&apos;s really pretty small, not much happening in this portion of the  kernel at the moment. When the &quot;highlight&quot; is the movement of the  documentation from .txt to .rst files, it&apos;s a good merge window.  There&apos;s a number of small fixes and updates over the various serial  drivers, and a new &quot;tty null&quot; driver for those embedded systems that  like to make things even smaller and not break things.  All of these have been in linux-next for a while with no reported  issues&quot;* tag &apos;tty-5.2-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (45 commits)  tty: serial: add driver for the SiFive UART  dt-bindings: serial: add documentation for the SiFive UART driver  serial: uartps: Add support for cts-override  dt-bindings: xilinx-uartps: Add support for cts-override  serial: milbeaut_usio: Fix error handling in probe and remove  tty: rocket: deprecate the rp_ioctl  tty: rocket: Remove RCPK_GET_STRUCT ioctl  tty: update obsolete termios comment  tty: serial_core: fix error code returned by uart_register_driver()  serial: 8250-mtk: modify baudrate setting  serial: 8250-mtk: add follow control  docs: serial: convert docs to ReST and rename to *.rst  serial: 8250_exar: Adjust IOT2000 matching  TTY: serial_core, add -&gt;install  serial: Fix using plain integer instead of Null pointer  tty:serial_core: Spelling mistake  tty: Add NULL TTY driver  tty: vt: keyboard: Allow Unicode compose base char  Revert &quot;tty: fix NULL pointer issue when tty_port ops is not set&quot;  serial: Add Milbeaut serial control  ...

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Wed, 08 May 2019 19:07:28 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>38c91d1d55fe842bf7edde4469e812b34a711cd8 - tty: add SPDX identifiers to Kconfig and Makefiles</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#38c91d1d55fe842bf7edde4469e812b34a711cd8</link>
        <description>tty: add SPDX identifiers to Kconfig and MakefilesThere were a few Kconfig and Makefiles under drivers/tty/ that weremissing a SPDX identifier.  Fix that up so that automated tools canproperly classify all kernel source files.Cc: Jiri Slaby &lt;jslaby@suse.com&gt;Cc: Jiri Kosina &lt;jikos@kernel.org&gt;Cc: Rob Herring &lt;robh@kernel.org&gt;Acked-by: David Sterba &lt;dsterba@suse.com&gt;Reviewed-by: Mukesh Ojha &lt;mojha@codeaurora.org&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Tue, 02 Apr 2019 16:07:07 +0200</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>664b0bae0b87f69bc9deb098f5e0158b9cf18e04 - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#664b0bae0b87f69bc9deb098f5e0158b9cf18e04</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 4.17 merge window.

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Thu, 05 Apr 2018 01:11:49 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>10a558374f3751cf4eb55143008975641dfc2cf4 - Merge tag &apos;v4.15&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/tty/serdev/Kconfig#10a558374f3751cf4eb55143008975641dfc2cf4</link>
        <description>Merge tag &apos;v4.15&apos; into nextSync with mainline to get in trackpoint updates and other changes.

            List of files:
            /linux/drivers/tty/serdev/Kconfig</description>
        <pubDate>Thu, 01 Feb 2018 09:41:33 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
