<?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>52c4e598 - Input: driver for Adafruit Seesaw Gamepad</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#52c4e598</link>
        <description>Input: driver for Adafruit Seesaw GamepadAdds a driver for a mini gamepad that communicates over i2c, the gamepadhas bidirectional thumb stick input and six buttons.The gamepad chip utilizes the open framework from Adafruit called &apos;Seesaw&apos;to transmit the ADC data for the joystick and digital pin state for thebuttons. I have only implemented the functionality required to receive thethumb stick and button state.Steps in reading the gamepad state over i2c:  1. Reset the registers  2. Set the pin mode of the pins specified by the `BUTTON_MASK` to input      `BUTTON_MASK`: A bit-map for the six digital pins internally       connected to the joystick buttons.  3. Enable internal pullup resistors for the `BUTTON_MASK`  4. Bulk set the pin state HIGH for `BUTTON_MASK`  5. Poll the device for button and joystick state done by:      `seesaw_read_data(struct i2c_client *client, struct seesaw_data *data)`Product page:  https://www.adafruit.com/product/5743Arduino driver:  https://github.com/adafruit/Adafruit_SeesawDriver tested on RPi Zero 2WReviewed-by: Thomas Wei&#223;schuh &lt;linux@weissschuh.net&gt;Signed-off-by: Anshul Dalal &lt;anshulusr@gmail.com&gt;Link: https://lore.kernel.org/r/20240106015111.882325-2-anshulusr@gmail.comSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Tue, 09 Jan 2024 22:39:26 +0000</pubDate>
        <dc:creator>Anshul Dalal &lt;anshulusr@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>9284d3b9 - Input: xpad - spelling fixes for &quot;Xbox&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#9284d3b9</link>
        <description>Input: xpad - spelling fixes for &quot;Xbox&quot;The Linux kernel is notorious for misspelling X-Box, X-box, XBox or XBOX;the official spelling is actually just Xbox. Plain and simple.Tried to respect the existing notes but still following the style guide.No functional changes intended. This only affects ancillary parts.Signed-off-by: Ismael Ferreras Morezuelas &lt;swyterzone@gmail.com&gt;Link: https://lore.kernel.org/r/401b1d94-1348-15fd-b48f-a80e8885c7a4@gmail.comSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Tue, 23 May 2023 00:21:07 +0000</pubDate>
        <dc:creator>Ismael Ferreras Morezuelas &lt;swyterzone@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>6100a19c - Input: joystick - fix Kconfig warning for JOYSTICK_ADC</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#6100a19c</link>
        <description>Input: joystick - fix Kconfig warning for JOYSTICK_ADCFix a Kconfig warning for JOYSTICK_ADC by also selectingIIO_BUFFER.WARNING: unmet direct dependencies detected for IIO_BUFFER_CB  Depends on [n]: IIO [=y] &amp;&amp; IIO_BUFFER [=n]  Selected by [y]:  - JOYSTICK_ADC [=y] &amp;&amp; INPUT [=y] &amp;&amp; INPUT_JOYSTICK [=y] &amp;&amp; IIO [=y]Fixes: 2c2b364fddd5 (&quot;Input: joystick - add ADC attached joystick driver.&quot;)Reported-by: kernel test robot &lt;lkp@intel.com&gt;Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Link: https://lore.kernel.org/r/20221104201238.31628-1-rdunlap@infradead.orgSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Fri, 04 Nov 2022 20:12:38 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>5f92df8d - Input: raspberrypi-ts - add missing HAS_IOMEM dependency</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#5f92df8d</link>
        <description>Input: raspberrypi-ts - add missing HAS_IOMEM dependencySince JOYSTICK_SENSEHAT selects MFD_SIMPLE_MFD_I2C and the latterdepends on HAS_IOMEM, and since &apos;select&apos; does not follow anydependency chains, JOYSTICK_SENSEHAT should also depend on HAS_IOMEMto prevent a kconfig warning and a build error:WARNING: unmet direct dependencies detected for MFD_SIMPLE_MFD_I2C  Depends on [n]: HAS_IOMEM [=n] &amp;&amp; I2C [=y]  Selected by [y]:  - JOYSTICK_SENSEHAT [=y] &amp;&amp; INPUT_JOYSTICK [=y] &amp;&amp; INPUT [=y] &amp;&amp; I2C [=y]s390-linux-ld: drivers/mfd/simple-mfd-i2c.o: in function `simple_mfd_i2c_probe&apos;:simple-mfd-i2c.c:(.text+0xc8): undefined reference to `devm_mfd_add_devices&apos;Fixes: 41657514c796 (&quot;Input: add Raspberry Pi Sense HAT joystick driver&quot;)Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Link: https://lore.kernel.org/r/20220531022942.16340-1-rdunlap@infradead.orgSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Tue, 31 May 2022 15:54:02 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>41657514 - Input: add Raspberry Pi Sense HAT joystick driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#41657514</link>
        <description>Input: add Raspberry Pi Sense HAT joystick driverThis patch adds the driver for the Sense HAT joystick. It outputs BTN_DPADkey events when moved in any of the four directions and the BTN_SELECTevent when depressed.Co-developed-by: Daniel Bauman &lt;dbauman@redhat.com&gt;Signed-off-by: Daniel Bauman &lt;dbauman@redhat.com&gt;Co-developed-by: Mwesigwa Guma &lt;mguma@redhat.com&gt;Signed-off-by: Mwesigwa Guma &lt;mguma@redhat.com&gt;Co-developed-by: Joel Savitz &lt;jsavitz@redhat.com&gt;Signed-off-by: Joel Savitz &lt;jsavitz@redhat.com&gt;Signed-off-by: Charles Mirabile &lt;cmirabil@redhat.com&gt;Link: https://lore.kernel.org/r/20220419205158.28088-3-cmirabil@redhat.comSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Wed, 20 Apr 2022 21:00:20 +0000</pubDate>
        <dc:creator>Charles Mirabile &lt;cmirabil@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>552e4047 - Input: add SparkFun Qwiic Joystick driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#552e4047</link>
        <description>Input: add SparkFun Qwiic Joystick driverA simple analog joystick built on Low Power ATtiny85 Microcontroller.Directional movements are measured with two 10 k&#937; potentiometersconnected with a gimbal mechanism that separates the horizontal andvertical movements. This joystick also has a select button that is actuatedwhen the joystick is pressed down.Input events polled over the I2C bus.Product page:https://www.sparkfun.com/products/15168Firmware and hardware sources:https://github.com/sparkfun/Qwiic_JoystickTested on RPi4B and O4-iMX-NANO boards.Signed-off-by: Oleh Kravchenko &lt;oleg@kaa.org.ua&gt;Reviewed-by: Jeff LaBundy &lt;jeff@labundy.com&gt;Link: https://lore.kernel.org/r/20210608223130.16830-2-oleg@kaa.org.uaSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Thu, 10 Jun 2021 22:16:17 +0000</pubDate>
        <dc:creator>Oleh Kravchenko &lt;oleg@kaa.org.ua&gt;</dc:creator>
    </item>
<item>
        <title>0bbadafd - um: allow disabling NO_IOMEM</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#0bbadafd</link>
        <description>um: allow disabling NO_IOMEMAdjust the kconfig a little to allow disabling NO_IOMEM in UML. Tomake an &quot;allyesconfig&quot; with CONFIG_NO_IOMEM=n build, adjust a fewKconfig things elsewhere and add dummy asm/fb.h and asm/vga.h files.Signed-off-by: Johannes Berg &lt;johannes.berg@intel.com&gt;Signed-off-by: Richard Weinberger &lt;richard@nod.at&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Fri, 05 Mar 2021 12:19:51 +0000</pubDate>
        <dc:creator>Johannes Berg &lt;johannes.berg@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>3bdffa8f - Input: Add N64 controller driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#3bdffa8f</link>
        <description>Input: Add N64 controller driverThis adds support for the four built-in controllerports on the Nintendo 64 console. The N64 controllerincludes an analog stick, a d-pad, and several buttons.No module support as the target has only 8mb ram.Signed-off-by: Lauri Kasanen &lt;cand@gmx.com&gt;Link: https://lore.kernel.org/r/20210115133408.0acd70163b582b77ad0a029b@gmx.comSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Mon, 25 Jan 2021 04:53:53 +0000</pubDate>
        <dc:creator>Lauri Kasanen &lt;cand@gmx.com&gt;</dc:creator>
    </item>
<item>
        <title>2c2b364f - Input: joystick - add ADC attached joystick driver.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#2c2b364f</link>
        <description>Input: joystick - add ADC attached joystick driver.Add a driver for joystick devices connected to ADC controllerssupporting the Industrial I/O subsystem.Signed-off-by: Artur Rojek &lt;contact@artur-rojek.eu&gt;Tested-by: Paul Cercueil &lt;paul@crapouillou.net&gt;Tested-by: Heiko Stuebner &lt;heiko@sntech.de&gt;Link: https://lore.kernel.org/r/20200927123302.31062-2-contact@artur-rojek.euSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Mon, 28 Sep 2020 23:12:46 +0000</pubDate>
        <dc:creator>Artur Rojek &lt;contact@artur-rojek.eu&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/input/joystick/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/input/joystick/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>751ad34f - Input: adi - work around module name confict</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#751ad34f</link>
        <description>Input: adi - work around module name confictMaking module name conflicts a fatal error breaks sparc64 allmodconfig:Error log:error: the following would cause module name conflict:  drivers/char/adi.ko  drivers/input/joystick/adi.koRenaming one of the modules would solve the problem, but then cause otherproblems because neither of them is automatically loaded and changingthe name is likely to break any setup that relies on manually loadingit by name.As there is probably no sparc64 system with this kind of ancient joystickattached, work around it by adding a Kconfig dependency that forbidsthem from both being modules.  It is still possible to build the joystickdriver if the sparc64 adi driver is built-in.Reported-by: Guenter Roeck &lt;linux@roeck-us.net&gt;Acked-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Reviewed-by: Guenter Roeck &lt;linux@roeck-us.net&gt;Link: https://lore.kernel.org/r/20200609100643.1245061-1-arnd@arndb.deSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Tue, 09 Jun 2020 19:51:53 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>055070a7 - Input: psxpad-spi - switch to using polled mode of input devices</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#055070a7</link>
        <description>Input: psxpad-spi - switch to using polled mode of input devicesWe have added polled mode to the normal input devices with the intent ofretiring input_polled_dev. This converts psxpad-spi driver to use thepolling mode of standard input devices and removes dependency onINPUT_POLLDEV.Link: https://lore.kernel.org/r/20191001220421.GA66693@dtor-wsSigned-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Tue, 29 Oct 2019 04:27:49 +0000</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>5d4b45a1 - Input: add support for the FlySky FS-iA6B RC receiver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#5d4b45a1</link>
        <description>Input: add support for the FlySky FS-iA6B RC receiverThis patch adds support for the FlySky FS-iA6B RC receiver (serial IBUS).It allows the usage of the FlySky FS-i6 and other AFHDS compliant remotecontrols as a joystick input device.To use it, a patch to inputattach which adds the FS-iA6B as a 115200 baudserial device is required. I will upstream it after this patch is merged.More information about the hardware can be found here:https://notsyncing.net/?p=blog&amp;b=2018.linux-fsia6bSigned-off-by: Markus Koch &lt;markus@notsyncing.net&gt;Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Sun, 21 Jul 2019 17:20:28 +0000</pubDate>
        <dc:creator>Markus Koch &lt;markus@notsyncing.net&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/input/joystick/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/input/joystick/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>5fb94e9c - docs: Fix some broken references</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#5fb94e9c</link>
        <description>docs: Fix some broken referencesAs we move stuff around, some doc references are broken. Fix some ofthem via this script:	./scripts/documentation-file-ref-check --fixManually checked if the produced result is valid, removing a fewfalse-positives.Acked-by: Takashi Iwai &lt;tiwai@suse.de&gt;Acked-by: Masami Hiramatsu &lt;mhiramat@kernel.org&gt;Acked-by: Stephen Boyd &lt;sboyd@kernel.org&gt;Acked-by: Charles Keepax &lt;ckeepax@opensource.wolfsonmicro.com&gt;Acked-by: Mathieu Poirier &lt;mathieu.poirier@linaro.org&gt;Reviewed-by: Coly Li &lt;colyli@suse.de&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/input/joystick/Kconfig</description>
        <pubDate>Tue, 08 May 2018 18:14:57 +0000</pubDate>
        <dc:creator>Mauro Carvalho Chehab &lt;mchehab+samsung@kernel.org&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/input/joystick/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/input/joystick/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>68ef4836 - Input: pxrc - new driver for PhoenixRC Flight Controller Adapter</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#68ef4836</link>
        <description>Input: pxrc - new driver for PhoenixRC Flight Controller AdapterThis driver let you plug in your RC controller to the adapter anduse it as input device in various RC simulators.Signed-off-by: Marcus Folkesson &lt;marcus.folkesson@gmail.com&gt;Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Sat, 17 Mar 2018 18:00:58 +0000</pubDate>
        <dc:creator>Marcus Folkesson &lt;marcus.folkesson@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>8be193c7 - Input: add support for PlayStation 1/2 joypads connected via SPI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#8be193c7</link>
        <description>Input: add support for PlayStation 1/2 joypads connected via SPIPlayStation 1/2 joypads can be connected directly to the SPI interface.Signed-off-by: Tomohiro Yoshidomi &lt;sylph23k@gmail.com&gt;Acked-by: David Herrmann &lt;dh.herrmann@gmail.com&gt;Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Sat, 06 May 2017 20:00:31 +0000</pubDate>
        <dc:creator>Tomohiro Yoshidomi &lt;sylph23k@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>09a59a9d - drivers/input/joystick/Kconfig: zhenhua.c needs BITREVERSE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#09a59a9d</link>
        <description>drivers/input/joystick/Kconfig: zhenhua.c needs BITREVERSEIt uses bitrev8(), so it must ensure that lib/bitrev.o gets included invmlinux.Cc: Fengguang Wu &lt;fengguang.wu@gmail.com&gt;Cc: yalin wang &lt;yalin.wang2010@gmail.com&gt;Cc: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&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/input/joystick/Kconfig</description>
        <pubDate>Thu, 01 Oct 2015 22:37:08 +0000</pubDate>
        <dc:creator>Andrew Morton &lt;akpm@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d3b367bc - Input: zhenhua - ensure we have BITREVERSE</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/input/joystick/Kconfig#d3b367bc</link>
        <description>Input: zhenhua - ensure we have BITREVERSEIt uses bitrev8(), so it must ensure that lib/bitrev.o gets included invmlinux.Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;Signed-off-by: Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/input/joystick/Kconfig</description>
        <pubDate>Mon, 28 Sep 2015 23:38:07 +0000</pubDate>
        <dc:creator>Andrew Morton &lt;akpm@linux-foundation.org&gt;</dc:creator>
    </item>
</channel>
</rss>
