<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/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>a5a056c8 - HID: intel-thc: fix CONFIG_HID dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#a5a056c8</link>
        <description>HID: intel-thc: fix CONFIG_HID dependencyIn drivers/hid/, most drivers depend on CONFIG_HID, while a couple of thedrivers in subdirectories instead depend on CONFIG_HID_SUPPORT and use&apos;select HID&apos;. With the newly added INTEL_THC_HID, this causes a buildwarning for a circular dependency:WARNING: unmet direct dependencies detected for HID  Depends on [m]: HID_SUPPORT [=y] &amp;&amp; INPUT [=m]  Selected by [y]:  - INTEL_THC_HID [=y] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; X86_64 [=y] &amp;&amp; PCI [=y] &amp;&amp; ACPI [=y]WARNING: unmet direct dependencies detected for INPUT_FF_MEMLESS  Depends on [m]: INPUT [=m]  Selected by [y]:  - HID_MICROSOFT [=y] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y]  - GREENASIA_FF [=y] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y] &amp;&amp; HID_GREENASIA [=y]  - HID_WIIMOTE [=y] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y] &amp;&amp; LEDS_CLASS [=y]  - ZEROPLUS_FF [=y] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y] &amp;&amp; HID_ZEROPLUS [=y]  Selected by [m]:  - HID_ACRUX_FF [=y] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y] &amp;&amp; HID_ACRUX [=m]  - HID_EMS_FF [=m] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y]  - HID_GOOGLE_STADIA_FF [=m] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y]  - PANTHERLORD_FF [=y] &amp;&amp; HID_SUPPORT [=y] &amp;&amp; HID [=y] &amp;&amp; HID_PANTHERLORD [=m]It&apos;s better to be consistent and always use &apos;depends on HID&apos; for HIDdrivers. The notable exception here is USB_KBD/USB_MOUSE, which arealternative implementations that do not depend on the HID subsystem.Do this by extending the &quot;if HID&quot; section below, which means that a fewof the duplicate &quot;depends on HID&quot; and &quot;depends on INPUT&quot; statementscan be removed in the process.Fixes: 1b2d05384c29 (&quot;HID: intel-thc-hid: Add basic THC driver skeleton&quot;)Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Ilpo J&#228;rvinen &lt;ilpo.jarvinen@linux.intel.com&gt;Reviewed-by: Maximilian Luz &lt;luzmaximilian@gmail.com&gt;Reviewed-by: Even Xu &lt;even.xu@intel.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.com&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Thu, 23 Jan 2025 13:48:12 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>0818ec1f - HID: Kconfig: Fix spelling mistake &quot;Uninterruptable&quot; -&gt; &quot;Uninterruptible&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#0818ec1f</link>
        <description>HID: Kconfig: Fix spelling mistake &quot;Uninterruptable&quot; -&gt; &quot;Uninterruptible&quot;There is a spelling mistake in the Kconfig text. Fix it.Signed-off-by: Colin Ian King &lt;colin.king@canonical.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Mon, 19 Jul 2021 10:27:31 +0000</pubDate>
        <dc:creator>Colin Ian King &lt;colin.king@canonical.com&gt;</dc:creator>
    </item>
<item>
        <title>a7f7f624 - treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#a7f7f624</link>
        <description>treewide: replace &apos;---help---&apos; in Kconfig files with &apos;help&apos;Since commit 84af7a6194e4 (&quot;checkpatch: kconfig: prefer &apos;help&apos; over&apos;---help---&apos;&quot;), the number of &apos;---help---&apos; has been graduallydecreasing, but there are still more than 2400 instances.This commit finishes the conversion. While I touched the lines,I also fixed the indentation.There are a variety of indentation styles found.  a) 4 spaces + &apos;---help---&apos;  b) 7 spaces + &apos;---help---&apos;  c) 8 spaces + &apos;---help---&apos;  d) 1 space + 1 tab + &apos;---help---&apos;  e) 1 tab + &apos;---help---&apos;    (correct indentation)  f) 1 tab + 1 space + &apos;---help---&apos;  g) 1 tab + 2 spaces + &apos;---help---&apos;In order to convert all of them to 1 tab + &apos;help&apos;, I ran thefollowing commend:  $ find . -name &apos;Kconfig*&apos; | xargs sed -i &apos;s/^[[:space:]]*---help---/\thelp/&apos;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Sat, 13 Jun 2020 16:50:22 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;masahiroy@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>ec15872d - docs: fix broken references with multiple hints</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#ec15872d</link>
        <description>docs: fix broken references with multiple hintsThe script:	./scripts/documentation-file-ref-check --fixGives multiple hints for broken references on some files.Manually use the one that applies for some files.Acked-by: Steven Rostedt (VMware) &lt;rostedt@goodmis.org&gt;Acked-by: James Morris &lt;james.morris@microsoft.com&gt;Signed-off-by: Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;Acked-by: Jonathan Corbet &lt;corbet@lwn.net&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Tue, 08 May 2018 21:54:36 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>1f41a6a9 - HID: Fix the generic Kconfig options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#1f41a6a9</link>
        <description>HID: Fix the generic Kconfig optionsThe generic HID driver is obviously not a special driver, so move itoutside of the special drivers menu. Explain the usage and make thedefault follow the HID setting. This should simplify migration fromolder kernels. While at it, remove the redundant HID_SUPPORT optionand modify the HID and USB_HID entries to better explain the busstructure.Reported-by: Jan Beulich &lt;jbeulich@suse.com&gt;Signed-off-by: Henrik Rydberg &lt;rydberg@euromail.se&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Mon, 25 Jun 2012 14:55:41 +0000</pubDate>
        <dc:creator>Henrik Rydberg &lt;rydberg@euromail.se&gt;</dc:creator>
    </item>
<item>
        <title>6a108a14 - kconfig: rename CONFIG_EMBEDDED to CONFIG_EXPERT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#6a108a14</link>
        <description>kconfig: rename CONFIG_EMBEDDED to CONFIG_EXPERTThe meaning of CONFIG_EMBEDDED has long since been obsoleted; the optionis used to configure any non-standard kernel with a much larger scope thanonly small devices.This patch renames the option to CONFIG_EXPERT in init/Kconfig and fixesreferences to the option throughout the kernel.  A new CONFIG_EMBEDDEDoption is added that automatically selects CONFIG_EXPERT when enabled andcan be used in the future to isolate options that should only beconsidered for embedded systems (RISC architectures, SLOB, etc).Calling the option &quot;EXPERT&quot; more accurately represents its intention: onlyexpert users who understand the impact of the configuration changes theyare making should enable it.Reviewed-by: Ingo Molnar &lt;mingo@elte.hu&gt;Acked-by: David Woodhouse &lt;david.woodhouse@intel.com&gt;Signed-off-by: David Rientjes &lt;rientjes@google.com&gt;Cc: Greg KH &lt;gregkh@suse.de&gt;Cc: &quot;David S. Miller&quot; &lt;davem@davemloft.net&gt;Cc: Jens Axboe &lt;axboe@kernel.dk&gt;Cc: Arnd Bergmann &lt;arnd@arndb.de&gt;Cc: Robin Holt &lt;holt@sgi.com&gt;Cc: &lt;linux-arch@vger.kernel.org&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Thu, 20 Jan 2011 22:44:16 +0000</pubDate>
        <dc:creator>David Rientjes &lt;rientjes@google.com&gt;</dc:creator>
    </item>
<item>
        <title>ac09952b - HID: make boot protocol drivers depend on EMBEDDED</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#ac09952b</link>
        <description>HID: make boot protocol drivers depend on EMBEDDEDThe usbmouse and usbkbd modules are not supposed to be used with regular USBmice and keyboards. Make them depend on EMBEDDED to prevent them from beingbuilt and loaded on non-EMBEDDED configs.Signed-off-by: Parag Warudkar &lt;parag.lkml@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Mon, 22 Dec 2008 21:50:52 +0000</pubDate>
        <dc:creator>Parag Warudkar &lt;parag.lkml@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>76483cf4 - HID: remove hid-ff</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#76483cf4</link>
        <description>HID: remove hid-ffhid-ff.c now calls only pidff (generic driver), the special ones are nowin separate drivers. Invoke pidff on all non-special directly.Signed-off-by: Jiri Slaby &lt;jirislaby@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Thu, 18 Sep 2008 10:23:33 +0000</pubDate>
        <dc:creator>Jiri Slaby &lt;jirislaby@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>987fbc1f - HID: move zeroplus FF processing</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#987fbc1f</link>
        <description>HID: move zeroplus FF processingSigned-off-by: Jiri Slaby &lt;jirislaby@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Thu, 18 Sep 2008 10:23:32 +0000</pubDate>
        <dc:creator>Jiri Slaby &lt;jirislaby@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>10e41a71 - HID: move thrustmaster FF processing</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#10e41a71</link>
        <description>HID: move thrustmaster FF processingSigned-off-by: Jiri Slaby &lt;jirislaby@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Thu, 18 Sep 2008 10:23:31 +0000</pubDate>
        <dc:creator>Jiri Slaby &lt;jirislaby@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5f022298 - HID: move pantherlord FF processing</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#5f022298</link>
        <description>HID: move pantherlord FF processingMove the force feedback processing into a separate module.[jkosina@suse.cz: fix Kconfig texts a little bit]Signed-off-by: Jiri Slaby &lt;jirislaby@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Thu, 18 Sep 2008 17:43:32 +0000</pubDate>
        <dc:creator>Jiri Slaby &lt;jirislaby@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>606bd0a8 - HID: move logitech FF processing</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#606bd0a8</link>
        <description>HID: move logitech FF processingMerge the logitech force feedback processing directly into logitechdriver from the usbhid core.Signed-off-by: Jiri Slaby &lt;jirislaby@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Fri, 04 Jul 2008 21:06:45 +0000</pubDate>
        <dc:creator>Jiri Slaby &lt;jirislaby@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>8c19a515 - HID: move apple quirks</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#8c19a515</link>
        <description>HID: move apple quirksMove them from the core code to a separate driver.Signed-off-by: Jiri Slaby &lt;jslaby@suse.cz&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Wed, 18 Jun 2008 21:36:49 +0000</pubDate>
        <dc:creator>Jiri Slaby &lt;jirislaby@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f5c669fc - HID: ThrustMaster FF driver is no longer experimental</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#f5c669fc</link>
        <description>HID: ThrustMaster FF driver is no longer experimentalThere is no need to keep a few years old ThrustMaster force-feedbackdriver as experimental.HID_FF is currently marked experimental anyway, so this is even redundant.Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Mon, 31 Mar 2008 23:56:33 +0000</pubDate>
        <dc:creator>Jiri Kosina &lt;jkosina@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>c17f9c90 - HID: force feedback driver for Logitech Rumblepad 2</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#c17f9c90</link>
        <description>HID: force feedback driver for Logitech Rumblepad 2Add force feedback support for Logitech Rumblepad 2.Tested-By: Edgar Simo &lt;bobbens@gmail.com&gt;Signed-off-by: Anssi Hannula &lt;anssi.hannula@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Mon, 31 Mar 2008 23:51:11 +0000</pubDate>
        <dc:creator>Anssi Hannula &lt;anssi.hannula@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>a45d82d1 - HID: Add support for Apple aluminum USB keyboards.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#a45d82d1</link>
        <description>HID: Add support for Apple aluminum USB keyboards.Reuse the existing quirks for Apple laptop USB keyboards.Signed-off-by: Michel Daenzer &lt;michel@tungstengraphics.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Wed, 24 Oct 2007 14:30:37 +0000</pubDate>
        <dc:creator>Michel Daenzer &lt;michel@tungstengraphics.com&gt;</dc:creator>
    </item>
<item>
        <title>5edc41ee - HID: use hid-plff driver for GreenAsia 0e8f:0003 devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#5edc41ee</link>
        <description>HID: use hid-plff driver for GreenAsia 0e8f:0003 devicesAdd 0e8f:0003 into the list of devices supported by the hid-plffforce feedback driver. These devices identify themselves as&quot;GreenAsia Inc.    USB Joystick     &quot; and can be either adapters oractual game controllers. The testing was done with a K&#195;&#182;ng Gaminggamepad.Signed-off-by: Anssi Hannula &lt;anssi.hannula@gmail.com&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Wed, 19 Sep 2007 14:13:20 +0000</pubDate>
        <dc:creator>Anssi Hannula &lt;anssi.hannula@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b27c9590 - HID: add support for Thrustmaster FGT Force Feedback wheel</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#b27c9590</link>
        <description>HID: add support for Thrustmaster FGT Force Feedback wheelRework thrustmaster force-feedback module to support devices havingdifferent types of force feedback effects. Add signatures ofThrustmaster FGT Rumble Force and Thrustmaster FGT Force Feedbackwheels to the list of devices dupported by the module.Parts of the patch were lifted off a simalar patch byAnssi Hannula &lt;anssi.hannula@gmail.com&gt;Signed-off-by: Dmitry Torokhov &lt;dtor@mail.ru&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Mon, 30 Jul 2007 12:56:26 +0000</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dtor@mail.ru&gt;</dc:creator>
    </item>
<item>
        <title>59e7e36c - USB HID: update CONFIG_USB_HIDINPUT_POWERBOOK description</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/hid/usbhid/Kconfig#59e7e36c</link>
        <description>USB HID: update CONFIG_USB_HIDINPUT_POWERBOOK descriptionThis option is needed on the Apple Intel Laptops too.Signed-off-by: Noel Kothe &lt;noel@debian.org&gt;Signed-off-by: Jiri Kosina &lt;jkosina@suse.cz&gt;

            List of files:
            /linux-6.15/drivers/hid/usbhid/Kconfig</description>
        <pubDate>Mon, 07 May 2007 21:26:03 +0000</pubDate>
        <dc:creator>Noel Kothe &lt;noel@debian.org&gt;</dc:creator>
    </item>
</channel>
</rss>
