Hi Linus, Please pull from: git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus to receive updates for the input subsystem. You will get: - several device tree bindings for input devices have been converted to yaml - dropped no longer used ixp4xx-beeper and CSR Prima2 PWRC drivers - analog joystick has been converted to use ktime API and no longer warn about low resolution timers - a few driver fixes Changelog: --------- Alexander Sverdlin (1): Input: ep93xx_keypad - prepare clock before using it Andy Shevchenko (1): Input: parkbd - switch to use module_parport_driver() Colin Ian King (2): Input: Fix spelling mistake in Kconfig "Modul" -> "Module" Input: Fix spelling mistake in Kconfig "useable" -> "usable" Dmitry Torokhov (3): Input: serio - make write method mandatory Revert "Input: serio - make write method mandatory" Input: pm8941-pwrkey - fix comma vs semicolon issue Geert Uytterhoeven (1): Input: adc-keys - drop bogus __refdata annotation Guenter Roeck (1): Input: analog - always use ktime functions Linus Walleij (4): Input: ixp4xx-beeper - delete driver Input: adp5588-keys - use the right header Input: adp5589-keys - use the right header Input: mms114 - support MMS134S Lukas Bulwahn (1): Input: remove dead CSR Prima2 PWRC driver Marek Vasut (1): dt-bindings: input: tsc2005: Convert to YAML schema Maxime Ripard (4): dt-bindings: input: Convert ChipOne ICN8318 binding to a schema dt-bindings: input: Convert Pixcir Touchscreen binding to a schema dt-bindings: input: Convert Regulator Haptic binding to a schema dt-bindings: input: sun4i-lradc: Add wakeup-source Oliver Graute (1): Input: edt-ft5x06 - added case for EDT EP0110M09 jingle.wu (1): Input: elan_i2c - reduce the resume time for controller in Whitebox satya priya (3): dt-bindings: power: reset: Change 'additionalProperties' to true dt-bindings: input: pm8941-pwrkey: Convert pm8941 power key binding to yaml dt-bindings: power: reset: qcom-pon: Convert qcom PON binding to yaml Diffstat: -------- .../input/allwinner,sun4i-a10-lradc-keys.yaml | 2 + .../bindings/input/qcom,pm8941-pwrkey.txt | 55 ------ .../bindings/input/qcom,pm8941-pwrkey.yaml | 51 +++++ .../devicetree/bindings/input/regulator-haptic.txt | 21 --- .../bindings/input/regulator-haptic.yaml | 43 +++++ .../input/touchscreen/chipone,icn8318.yaml | 62 ++++++ .../bindings/input/touchscreen/chipone_icn8318.txt | 44 ----- .../input/touchscreen/pixcir,pixcir_ts.yaml | 68 +++++++ .../bindings/input/touchscreen/pixcir_i2c_ts.txt | 31 --- .../bindings/input/touchscreen/ti,tsc2005.yaml | 128 +++++++++++++ .../bindings/input/touchscreen/tsc2005.txt | 64 ------- .../devicetree/bindings/power/reset/qcom,pon.txt | 49 ----- .../devicetree/bindings/power/reset/qcom,pon.yaml | 80 ++++++++ .../bindings/power/reset/reboot-mode.yaml | 2 +- drivers/input/joystick/analog.c | 107 ++--------- drivers/input/keyboard/Kconfig | 2 +- drivers/input/keyboard/adc-keys.c | 2 +- drivers/input/keyboard/adp5588-keys.c | 2 +- drivers/input/keyboard/adp5589-keys.c | 2 +- drivers/input/keyboard/ep93xx_keypad.c | 4 +- drivers/input/misc/Kconfig | 22 --- drivers/input/misc/Makefile | 2 - drivers/input/misc/ixp4xx-beeper.c | 183 ------------------ drivers/input/misc/pm8941-pwrkey.c | 2 +- drivers/input/misc/sirfsoc-onkey.c | 207 --------------------- drivers/input/mouse/elan_i2c.h | 3 +- drivers/input/mouse/elan_i2c_core.c | 1 + drivers/input/serio/parkbd.c | 14 +- drivers/input/touchscreen/Kconfig | 2 +- drivers/input/touchscreen/edt-ft5x06.c | 1 + drivers/input/touchscreen/mms114.c | 15 +- 31 files changed, 472 insertions(+), 799 deletions(-) delete mode 100644 Documentation/devicetree/bindings/input/qcom,pm8941-pwrkey.txt create mode 100644 Documentation/devicetree/bindings/input/qcom,pm8941-pwrkey.yaml delete mode 100644 Documentation/devicetree/bindings/input/regulator-haptic.txt create mode 100644 Documentation/devicetree/bindings/input/regulator-haptic.yaml create mode 100644 Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml delete mode 100644 Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt create mode 100644 Documentation/devicetree/bindings/input/touchscreen/pixcir,pixcir_ts.yaml delete mode 100644 Documentation/devicetree/bindings/input/touchscreen/pixcir_i2c_ts.txt create mode 100644 Documentation/devicetree/bindings/input/touchscreen/ti,tsc2005.yaml delete mode 100644 Documentation/devicetree/bindings/input/touchscreen/tsc2005.txt delete mode 100644 Documentation/devicetree/bindings/power/reset/qcom,pon.txt create mode 100644 Documentation/devicetree/bindings/power/reset/qcom,pon.yaml delete mode 100644 drivers/input/misc/ixp4xx-beeper.c delete mode 100644 drivers/input/misc/sirfsoc-onkey.c Thanks. -- Dmitry