<?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>1be05c6afbb2c4052d0a13fc91ddcd89aaee9614 - Merge tag &apos;input-for-v7.3-rc0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#1be05c6afbb2c4052d0a13fc91ddcd89aaee9614</link>
        <description>Merge tag &apos;input-for-v7.3-rc0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/inputPull input updates from Dmitry Torokhov: - A new driver and device tree binding for Imagis ISA1200 haptic motor   controller - Improvements to input core opening, closing and inhibiting devices,   ensuring devices are fully ready before delivering events, deferring   handler start() until the device is opened, resyncing state on   uninhibit, and rejecting inhibit requests during unregistration - Updates to cap11xx capacitive touch driver to support Microchip   CAP1114, optional hardware reset GPIO handling, and per-chip LED   constraints - Fixes for MELFAS MMS114 touchscreen driver hardening incoming data   parsing, endianness fixes for I2C packet layout, Y-resolution   configuration, and refactoring to use chip variant descriptors - Updates for psmouse driver resolving a potential UAF during protocol   disconnect, cleaning up PNP ID matching, and making use of guard() - Fix for FocalTech PS/2 protocol to prevent coordinate underflow and   cursor jumps at boundaries - A change to Synaptics driver to enable InterTouch (SMBus) mode on   Dell Inspiron 3521 - Refactoring of PA-RISC keyboard support in gscps2 to supply keymaps   via software node device properties, removing architecture-specific   tables from the generic atkbd driver - Updates to Samsung keypad driver to keep interrupts disabled while   device is closed, along with wakeup logic cleanups and use of   pm_runtime_active guards - Updates to NXP i.MX SNVS power key driver to report press events   during resume to avoid lost events, and error handling cleanups - Updated TCA8418 keypad driver enabling overflow mode per hardware   errata - Conversion of ROHM BD718x7 and BD71828 PMIC drivers to instantiate   gpio-keys child devices using software nodes instead of platform data   (coming from MFD immutable branch) - Updates to Synaptics RMI4 driver to use touchscreen dimensions from   platform data when specified - Firmware update speed optimization for IC Type 0x19 in ELAN I2C   driver - A fix to Azoteq IQS5xx driver to validate firmware record spans   against programmable map size - Update to Samsung SUR40 contact count based on PixelSense   specification - A number of updates to device tree bindings, including TI TPS65217   power button schema conversion and new compatibles for FocalTech   FT3D81 and Synaptics S3706B - Other assorted driver cleanups, style fixes, and conversions to   modern string and cleanup helpers* tag &apos;input-for-v7.3-rc0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (61 commits)  Input: rmi4 - use platform data instead of query, when available  Input: elan_i2c - sort include statements  Input: elan_i2c - optimize update speed for IC Type 0x19.  Input: elan_i2c - use device-id/acpi.h for ACPI IDs  Input: reject inhibit and uninhibit requests on unregistering devices  Input: defer handler&apos;s start() until device is opened  Input: call handler-&gt;start() when uninhibiting device  Input: clear inhibited flag before re-opening device on uninhibit  Input: ensure device is ready before delivering events  Input: gscps2 - supply PA-RISC keyboard keymap via device property  Input: synaptics_i2c - return 0 explicitly on success  Input: rmi_smbus - remove conditional return with no effect  Input: pmic8xxx-keypad - remove conditional return with no effect  Input: focaltech - use signed coordinates to prevent underflow  Input: psmouse - use guard() for resource management  Input: psmouse - modernize PNP ID parsing  Input: psmouse - clean up locking around disable_work_sync()  Input: psmouse - fix use-after-free during protocol disconnect  Input: samsung-keypad - use pm_runtime_active guard  Input: samsung-keypad - keep interrupt disabled while closed  ...

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Wed, 19 Aug 2026 17:59:24 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>b4d85f863e5a6f1fa01b186001af0f68f4f5239e - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#b4d85f863e5a6f1fa01b186001af0f68f4f5239e</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.3 merge window.

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Sat, 15 Aug 2026 06:26:07 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>e07c509ad6eae086e330db359a32663aabe2b0d3 - Input: gscps2 - supply PA-RISC keyboard keymap via device property</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#e07c509ad6eae086e330db359a32663aabe2b0d3</link>
        <description>Input: gscps2 - supply PA-RISC keyboard keymap via device propertyInstead of hardcoding PA-RISC specific keycode tables into atkbd viacompile-time inclusion, have the gscps2 PS/2 port driver attach alinux,keymap software node device property to the serio device whena keyboard port is registered. This allows atkbd to dynamically fetchand apply the custom keymap when probing the port using genericfirmware property helpers, removing architecture-specific hacks fromgeneric keyboard driver code.Co-locate the keymap definitions with the serio port driver by movinghpps2atkbd.h from drivers/input/keyboard/ to drivers/input/serio/.To handle the five conflicting keys on RDI PrecisionBook laptops withoutruntime model string checks or duplicate keymap tables in memory, addCONFIG_SERIO_GSCPS2_RDI_KEYCODES to drivers/input/serio/Kconfig andresolve the conflicting keycodes at compile time via preprocessormacros.Link: https://patch.msgid.link/am_9BvmZu9g4RlUM@google.comAcked-by: Helge Deller &lt;deller@gmx.de&gt;Tested-by: Helge Deller &lt;deller@gmx.de&gt;Assisted-by: Antigravity:gemini-3.5-flashSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Wed, 05 Aug 2026 23:12:30 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>aa776949fb77462ee712eee28bc54a9ce95c5b40 - Merge branch &apos;for-7.2/wiimote&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#aa776949fb77462ee712eee28bc54a9ce95c5b40</link>
        <description>Merge branch &apos;for-7.2/wiimote&apos; into for-linus

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Tue, 16 Jun 2026 21:47:16 +0200</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.com&gt;</dc:creator>
    </item>
<item>
        <title>639609b83f69fe4cd08e01423ae8e12d84484cfa - Merge branch &apos;arena_direct_access&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next into for-7.2</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#639609b83f69fe4cd08e01423ae8e12d84484cfa</link>
        <description>Merge branch &apos;arena_direct_access&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next into for-7.2

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Mon, 25 May 2026 21:34:24 +0200</pubDate>
        <dc:creator>Tejun Heo &lt;tj@kernel.org&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/drivers/input/keyboard/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/drivers/input/keyboard/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>09d6818d3bdc1ea6e49a425040528cbdbc97bc0a - Merge branch &apos;linus&apos; into timers/clocksource</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#09d6818d3bdc1ea6e49a425040528cbdbc97bc0a</link>
        <description>Merge branch &apos;linus&apos; into timers/clocksource... to bring it up to date for new changes.

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Mon, 18 May 2026 11:01:07 +0200</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>658a6021492ad3b1b8a6e9a83963a1fad35a2af8 - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#658a6021492ad3b1b8a6e9a83963a1fad35a2af8</link>
        <description>Merge drm/drm-next into drm-intel-nextSome Display Port Adaptive Sync depends on drm work.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Fri, 15 May 2026 13:01:15 +0200</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.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/drivers/input/keyboard/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/drivers/input/keyboard/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>7e033543a2ab4c72319201298ed458e3bbddd82f - Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf 7.1-rc3</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#7e033543a2ab4c72319201298ed458e3bbddd82f</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf 7.1-rc3Cross-merge BPF and other fixes after downstream PR.Signed-off-by: Alexei Starovoitov &lt;ast@kernel.org&gt;

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Sun, 10 May 2026 22:24:49 +0200</pubDate>
        <dc:creator>Alexei Starovoitov &lt;ast@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>c53ed3e99920df6a90553c89a1c053aa0776841e - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#c53ed3e99920df6a90553c89a1c053aa0776841e</link>
        <description>Merge drm/drm-next into drm-xe-nextBringing in recent display changes.Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Fri, 08 May 2026 16:19:45 +0200</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>cafac16b6207b88ad92fbba1169ae4f43865cb0d - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#cafac16b6207b88ad92fbba1169ae4f43865cb0d</link>
        <description>Merge drm/drm-next into drm-misc-nextGetting fixes and updates from v7.1-rc1.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Mon, 27 Apr 2026 10:49:13 +0200</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9c9fe04e0fe3fdba7d4aafffa9b7bbb21f6fcbe1 - Merge tag &apos;v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#9c9fe04e0fe3fdba7d4aafffa9b7bbb21f6fcbe1</link>
        <description>Merge tag &apos;v7.1-rc1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux into gpio/for-nextLinux 7.1-rc1

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Mon, 27 Apr 2026 09:39:48 +0200</pubDate>
        <dc:creator>Bartosz Golaszewski &lt;bartosz.golaszewski@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>0fc8f6200d2313278fbf4539bbab74677c685531 - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#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/input/keyboard/Kconfig</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>429e6c7f90d12a8551b3eaa9faca7cfaefd99b1d - Merge tag &apos;input-for-v7.1-rc0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#429e6c7f90d12a8551b3eaa9faca7cfaefd99b1d</link>
        <description>Merge tag &apos;input-for-v7.1-rc0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/inputPull input updates from Dmitry Torokhov: - a new charlieplex GPIO keypad driver - an update to aw86927 driver to support 86938 chip - an update for Chrome OS EC keyboard driver to support Fn-&lt;key&gt; keymap   extension - an UAF fix in debugfs teardown in EDT touchscreen driver - a number of conversions for input drivers to use guard() and __free()   cleanup primitives - several drivers for bus mice (inport, logibm) and other very old   devices have been removed - OLPC HGPK PS/2 protocol has been removed as it&apos;s been broken and   inactive for 10 something years - dedicated kpsmoused has been removed from psmouse driver - other assorted cleanups and fixups* tag &apos;input-for-v7.1-rc0&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (101 commits)  Input: charlieplex_keypad - add GPIO charlieplex keypad  dt-bindings: input: add GPIO charlieplex keypad  dt-bindings: input: add settling-time-us common property  dt-bindings: input: add debounce-delay-ms common property  Input: imx_keypad - fix spelling mistake &quot;Colums&quot; -&gt; &quot;Columns&quot;  Input: edt-ft5x06 - fix use-after-free in debugfs teardown  Input: ims-pcu - fix heap-buffer-overflow in ims_pcu_process_data()  Input: ct82c710 - remove driver  Input: mk712 - remove driver  Input: logibm - remove driver  Input: inport - remove driver  Input: qt1070 - inline i2c_check_functionality check  Input: qt1050 - inline i2c_check_functionality check  Input: aiptek - validate raw macro indices before updating state  Input: gf2k - skip invalid hat lookup values  Input: xpad - add RedOctane Games vendor id  Input: xpad - remove stale TODO and changelog header  Input: usbtouchscreen - refactor endpoint lookup  Input: aw86927 - add support for Awinic AW86938  dt-bindings: input: awinic,aw86927: Add Awinic AW86938  ...

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Thu, 23 Apr 2026 03:36:40 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.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/drivers/input/keyboard/Kconfig#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/drivers/input/keyboard/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>2ca45e57ea027fffe3350ae5e21ad9cecb0dce74 - Input: charlieplex_keypad - add GPIO charlieplex keypad</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#2ca45e57ea027fffe3350ae5e21ad9cecb0dce74</link>
        <description>Input: charlieplex_keypad - add GPIO charlieplex keypadAdd support for GPIO-based charlieplex keypad, allowing to controlN^2-N keys using N GPIO lines.Reuse matrix keypad keymap to simplify, even if there is no conceptof rows and columns in this type of keyboard.Signed-off-by: Hugo Villeneuve &lt;hvilleneuve@dimonoff.com&gt;Reviewed-by: Andy Shevchenko &lt;andriy.shevchenko@intel.com&gt;Link: https://patch.msgid.link/20260312180304.3865850-5-hugo@hugovil.comSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux/drivers/input/keyboard/Kconfig</description>
        <pubDate>Sun, 19 Apr 2026 07:18:54 +0200</pubDate>
        <dc:creator>Hugo Villeneuve &lt;hvilleneuve@dimonoff.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/drivers/input/keyboard/Kconfig#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/drivers/input/keyboard/Kconfig</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/drivers/input/keyboard/Kconfig#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/input/keyboard/Kconfig</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>82ee50252dc891e3f3b32d923bb4f656d300b772 - Merge drm/drm-next into drm-xe-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/input/keyboard/Kconfig#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/input/keyboard/Kconfig</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>
</channel>
</rss>
