<?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 TODO</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#0fc8f6200d2313278fbf4539bbab74677c685531</link>
        <description>Merge drm/drm-fixes into drm-misc-fixesGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Mon, 27 Apr 2026 10:26:49 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/drivers/gpio/TODO</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/drivers/gpio/TODO#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/drivers/gpio/TODO</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>1334d2a3b3235d062e5e1f51aebe7a64ed57cf72 - Merge tag &apos;gpio-updates-for-v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#1334d2a3b3235d062e5e1f51aebe7a64ed57cf72</link>
        <description>Merge tag &apos;gpio-updates-for-v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linuxPull gpio updates from Bartosz Golaszewski: &quot;For this merge window we have two new drivers: support for  GPIO-signalled ACPI events on Intel platforms and a generic  GPIO-over-pinctrl driver using the ARM SCMI protocol for  controlling pins.  Several things have been reworked in GPIO core: we unduplicated GPIO  hog handling, reduced the number of SRCU locks and dereferences,  improved support for software-node-based lookup and removed more  legacy code after converting remaining users to modern alternatives.  There&apos;s also a number of driver reworks and refactoring, documentation  updates, some bug-fixes and new tests.  GPIO core:   - defer probe on software node lookups when the remote software node     exists but has not been registered as a firmware node yet   - unify GPIO hog handling by moving code duplicated in OF and ACPI     modules into GPIO core and allow setting up hogs with software     nodes   - allow matching GPIO controllers by secondary firmware node if     matching by primary does not succeed   - demote deferral warnings to debug level as they are quite normal     when using software nodes which don&apos;t support fw_devlink yet   - disable the legacy GPIO character device uAPI v1 supprt in Kconfig     by default   - rework several core functions in preparation for the upcoming     Revocable helper library for protecting resources against sudden     removal, this reduces the number of SRCU dereferences in GPIO core   - simplify file descriptor logic in GPIO character device code by     using FD_PREPARE()   - introduce a header defining symbols used by both GPIO consumers and     providers to avoid having to include provider-specific headers from     drivers which only consume GPIOs   - replace snprintf() with strscpy() where formatting is not required  New drivers:   - add the gpio-by-pinctrl generic driver using the ARM SCMI protocol     to control GPIOs (along with SCMI changes pulled from the pinctrl     tree)   - add a driver providing support for handling of platform events via     GPIO-signalled ACPI events (used on Intel Nova Lake and later     platforms)  Driver changes:   - extend the gpio-kempld driver with support for more recent models,     interrupts and setting/getting multiple values at once   - improve interrupt handling in gpio-brcmstb   - add support for multi-SoC systems in gpio-tegra186   - make sure we return correct values from the .get() callbacks in     several GPIO drivers by normalizing any values other than 0, 1 or     negative error numbers   - use flexible arrays in several drivers to reduce the number of     required memory allocations   - simplify synchronous waiting for virtual drivers to probe and     remove the dedicated, a bit overengineered helper library     dev-sync-probe   - remove unneeded Kconfig dependencies on OF_GPIO in several drivers     and subsystems   - convert the two remaining users of of_get_named_gpio() to using     GPIO descriptors and remove the (no longer used) function along     with the header that declares it   - add missing includes in gpio-mmio   - shrink and simplify code in gpio-max732x by using guard(mutex)   - remove duplicated code handling the &apos;ngpios&apos; property from     gpio-ts4800, it&apos;s already handled in GPIO core   - use correct variable type in gpio-aspeed   - add support for a new model in gpio-realtek-otto   - allow to specify the active-low setting of simulated hogs over the     configfs interface (in addition to existing devicetree support) in     gpio-sim  Bug fixes:   - clear the OF_POPULATED flag on hog nodes in GPIO chip remove path     on OF systems   - fix resource leaks in error path in gpiochip_add_data_with_key()   - drop redundant device reference in gpio-mpsse  Tests:   - add selftests for use-after-free cases in GPIO character device     code  DT bindings:   - add a DT binding document for SCMI based, gpio-over-pinctrl devices   - fix interrupt description in microchip,mpfs-gpio   - add new compatible for gpio-realtek-otto   - describe the resets of the mpfs-gpio controller   - fix maintainer&apos;s email in gpio-delay bindings   - remove the binding document for cavium,thunder-8890 as the     corresponding device is bound over PCI and not firmware nodes  Documentation:   - update the recommended way of converting legacy boards to using     software nodes for GPIO description   - describe GPIO line value semantics   - misc updates to kerneldocs  Misc:   - convert OMAP1 ams-delta board to using GPIO hogs described with     software nodes&quot;* tag &apos;gpio-updates-for-v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (79 commits)  gpio: swnode: defer probe on references to unregistered software nodes  dt-bindings: gpio: cavium,thunder-8890: Remove DT binding  Documentation: gpio: update the preferred method for using software node lookup  gpio: gpio-by-pinctrl: s/used to do/is used to do/  gpio: aspeed: fix unsigned long int declaration  gpio: rockchip: convert to dynamic GPIO base allocation  gpio: remove dev-sync-probe  gpio: virtuser: stop using dev-sync-probe  gpio: aggregator: stop using dev-sync-probe  gpio: sim: stop using dev-sync-probe  gpio: Add Intel Nova Lake ACPI GPIO events driver  gpiolib: Make deferral warnings debug messages  gpiolib: fix hogs with multiple lines  gpio: fix up CONFIG_OF dependencies  gpio: gpio-by-pinctrl: add pinctrl based generic GPIO driver  gpio: dt-bindings: Add GPIO on top of generic pin control  firmware: arm_scmi: Allow PINCTRL_REQUEST to return EOPNOTSUPP  pinctrl: scmi: ignore PIN_CONFIG_PERSIST_STATE  pinctrl: scmi: Delete PIN_CONFIG_OUTPUT_IMPEDANCE_OHMS support  pinctrl: scmi: Add SCMI_PIN_INPUT_VALUE  ...

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Tue, 14 Apr 2026 05:10:58 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>51aaf65bbd21e81a0a4d6827fad76ec8873a7703 - Merge tag &apos;ib-gpio-remove-of-gpio-h-for-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux into mbox</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#51aaf65bbd21e81a0a4d6827fad76ec8873a7703</link>
        <description>Merge tag &apos;ib-gpio-remove-of-gpio-h-for-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux into mboxBartosz Golaszewski says:====================Immutable branch between GPIO and netConvert remaining users of of_gpio.h to using GPIO descriptors andremove the header.* tag &apos;ib-gpio-remove-of-gpio-h-for-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:  gpio: remove of_get_named_gpio() and &lt;linux/of_gpio.h&gt;  nfc: nfcmrvl: convert to gpio descriptors  nfc: s3fwrn5: convert to gpio descriptors====================Link: https://patch.msgid.link/20260309093153.10446-1-bartosz.golaszewski@oss.qualcomm.comSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Tue, 10 Mar 2026 03:11:21 +0100</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>e0c8104074f48868976832e334ffa86eb87176b2 - Merge tag &apos;ib-gpio-remove-of-gpio-h-for-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git into gpio/for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#e0c8104074f48868976832e334ffa86eb87176b2</link>
        <description>Merge tag &apos;ib-gpio-remove-of-gpio-h-for-v7.1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git into gpio/for-nextImmutable branch between GPIO and netConvert remaining users of of_gpio.h to using GPIO descriptors andremove the header.

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Mon, 09 Mar 2026 10:32:41 +0100</pubDate>
        <dc:creator>Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>b6420bd5aa0c374331bad6c0fa2eb5f0f87cf5a0 - gpio: remove of_get_named_gpio() and &lt;linux/of_gpio.h&gt;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#b6420bd5aa0c374331bad6c0fa2eb5f0f87cf5a0</link>
        <description>gpio: remove of_get_named_gpio() and &lt;linux/of_gpio.h&gt;All in-tree consumers have been converted to the descriptor-based API.Remove the deprecated of_get_named_gpio() helper, delete the&lt;linux/of_gpio.h&gt; header, and drop the corresponding entry fromMAINTAINERS.Also remove the completed TODO item for this cleanup.Signed-off-by: Jialu Xu &lt;xujialu@vimux.org&gt;Reviewed-by: Linus Walleij &lt;linusw@kernel.org&gt;Link: https://patch.msgid.link/02ABDA1F9E3FAF1F+20260307030623.3495092-6-xujialu@vimux.orgSigned-off-by: Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Sat, 07 Mar 2026 04:06:26 +0100</pubDate>
        <dc:creator>Jialu Xu &lt;xujialu@vimux.org&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/drivers/gpio/TODO#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/drivers/gpio/TODO</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>5add3c3c280a35f7e258e9cef7607db5a2e56fdc - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#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/drivers/gpio/TODO</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/drivers/gpio/TODO#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/drivers/gpio/TODO</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/drivers/gpio/TODO#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/drivers/gpio/TODO</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/drivers/gpio/TODO#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/drivers/gpio/TODO</description>
        <pubDate>Mon, 15 Dec 2025 09:27:39 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>a4a508df2aa34f8650afde54ea804321c618f45f - Merge tag &apos;v6.18&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#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/drivers/gpio/TODO</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>24f171c7e145f43b9f187578e89b0982ce87e54c - Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#24f171c7e145f43b9f187578e89b0982ce87e54c</link>
        <description>Merge tag &apos;asoc-fix-v6.19-rc1&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Fixes for v6.19We&apos;ve been quite busy with fixes since the merge window, though not inany particularly exciting ways - the standout thing is the fix for _SXcontrols which were broken by a change to how we do clamping, otherwiseit&apos;s all fairly run of the mill fixes and quirks.

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Sun, 21 Dec 2025 11:11:11 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>84318277d6334c6981ab326d4acc87c6a6ddc9b8 - Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#84318277d6334c6981ab326d4acc87c6a6ddc9b8</link>
        <description>Merge remote-tracking branch &apos;drm/drm-fixes&apos; into drm-misc-fixesPull in rc1 to include all changes since the merge window closed,and grab all fixes and changes from drm/drm-next.Signed-off-by: Maarten Lankhorst &lt;dev@lankhorst.se&gt;

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Mon, 15 Dec 2025 12:53:27 +0100</pubDate>
        <dc:creator>Maarten Lankhorst &lt;dev@lankhorst.se&gt;</dc:creator>
    </item>
<item>
        <title>500920fa76819b4909a32081e153bce80ce74824 - Merge tag &apos;gpio-updates-for-v6.19-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#500920fa76819b4909a32081e153bce80ce74824</link>
        <description>Merge tag &apos;gpio-updates-for-v6.19-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linuxPull gpio updates from Bartosz Golaszewski: &quot;There&apos;s one new driver, lots of various updates to existing ones, some  refactoring support for new models and misc tweaks and fixes.  The biggest new feature in GPIO core is adding support for managed,  enable-counted sharing of GPIO pins, something that - until now - was  only hacked around with the GPIOD_FLAGS_BIT_NONEXCLUSIVE request flag  which basically allowed drivers to &quot;fight it out&quot; for the descriptor  and provided no synchronization. It was enabled on Qualcomm platforms  (and thus is enabled on arm64 defconfig) and I plan on removing  GPIOD_FLAGS_BIT_NONEXCLUSIVE once all drivers using it are switched to  the new mechanism.  GPIO core:   - add proper support for shared GPIOs that&apos;s aiming to replace the     current sharing mechanism (which provides no synchronization ot     enable counting) and enable it for Qualcomm platforms   - improve the software node GPIO lookup by using the fwnode     representation instead of the software node&apos;s name which was prone     to bugs (GPIO controllers don&apos;t have to use the software node&apos;s     name as their kernel label)   - remove the last user of legacy-of-mm-gpiochip.h and drop the header   - move closer to removing the legacy gpio_request_one() routine   - rename some symbols for consistency   - shrink GPIO printk() helpers by reusing existing code   - remove some redundant kernel messages   - use min() instead of min_t() in GPIO ACPI code   - use system_percpu_wq instead of system_wq in GPIO character device     code  New drivers:   - add a driver for the QIXIS FPGA GPIO controller  Driver improvements:   - use modernized variants of power management macros across a wide     array of drivers in order to avoid having to use the __maybe_unused     attribute   - convert gpio-elkhartlake and reset-gpio to using the auxiliary bus     instead of the platform bus as they are not really described in     firmware   - use lock guards and update symbol prefixes in gpio-mmio   - support the bryx radio interface kit in gpio-mpsse + refactor the     driver   - use software nodes for configuring the reset-gpio driver, including     setting up the reference to the shared &quot;reset&quot; pin   - check and propagate the return value of gpiod_set_value() to     user-space in gpio-virtuser (this was previously not possible as     this function returned void)   - extend the gpio-regmap helper with more features (bypass cache for     aliased inputs, force writes for aliased data registers, add a new     configuration parameter)   - remove unneeded includes from gpio-aspeed and gpio-latch   - add support for Tegra410 to gpio-tegra186   - replace PCI-specific PM with generic device-level PM in gpio-bt8xx   - use dynamic GPIO range allocation in gpio-loongson-64bit   - improve handling of level-triggered interrupts in gpio-pca953x   - add suspend/resume support to gpio-fxl6408   - add support for more models to gpio-menz127   - optimize gpio-mvebu interrupt handling by avoiding unnecessary     calls to mvebu_gpio_irq_handler()   - make locking more consistent in gpio-grgpio  Device-tree bindings:   - document new NXP and Microchip models  Documentation:   - add a comprehensive compatibility and feature list for     gpio-pca953x, which is a great addition as it&apos;s probably the most     commonly used GPIO expander driver   - kernel-doc tweaks  Late fixes:   - use BYTE_CTRL_MODE for 2K2000/3000 models in gpio-loongson&quot;* tag &apos;gpio-updates-for-v6.19-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux: (80 commits)  gpio: loongson: Switch 2K2000/3000 GPIO to BYTE_CTRL_MODE  gpio: regmap: fix kernel-doc notation  gpio: shared: fix a deadlock  gpio: shared-proxy: set suppress_bind_attrs  gpio: shared: ignore GPIO hogs when traversing the device tree  gpio: shared: ignore special __symbols__ node when traversing device tree  gpio: shared: handle the reset-gpios corner case  gpio: zynq: Use modern PM macros  gpio: xilinx: Use modern PM macros  gpio: xgene: Use modern PM macros  gpio: uniphier: Use modern PM macros  gpio: tqmx86: Use modern PM macros  gpio: pch: Use modern PM macros  gpio: omap: Use modern PM macros  gpio: msc313: Use modern PM macros  gpio: mlxbf2: Use modern PM macros  gpio: ml-ioh: Use modern PM macros  gpio: pl061: Use modern PM macros  gpio: htc-egpio: Use modern PM macros  gpio: brcmstb: Use modern PM macros  ...

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Thu, 04 Dec 2025 21:33:38 +0100</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&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/drivers/gpio/TODO#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/drivers/gpio/TODO</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>eba11116f39533d2e38cc5898014f2c95f32d23a - gpiolib: of: Get rid of &lt;linux/gpio/legacy-of-mm-gpiochip.h&gt;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#eba11116f39533d2e38cc5898014f2c95f32d23a</link>
        <description>gpiolib: of: Get rid of &lt;linux/gpio/legacy-of-mm-gpiochip.h&gt;Last user of linux/gpio/legacy-of-mm-gpiochip.h is gone.Remove linux/gpio/legacy-of-mm-gpiochip.h andCONFIG_OF_GPIO_MM_GPIOCHIPSigned-off-by: Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;Signed-off-by: Bartosz Golaszewski &lt;bartosz.golaszewski@linaro.org&gt;

            List of files:
            /linux/drivers/gpio/TODO</description>
        <pubDate>Mon, 13 Oct 2025 15:07:15 +0200</pubDate>
        <dc:creator>Christophe Leroy &lt;christophe.leroy@csgroup.eu&gt;</dc:creator>
    </item>
<item>
        <title>82ee50252dc891e3f3b32d923bb4f656d300b772 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpio/TODO#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/drivers/gpio/TODO</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/drivers/gpio/TODO#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/drivers/gpio/TODO</description>
        <pubDate>Tue, 14 Oct 2025 09:37:11 +0200</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
