linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] Input updates for v5.15-rc0
@ 2021-09-10  4:38 Dmitry Torokhov
  2021-09-11 17:30 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Dmitry Torokhov @ 2021-09-10  4:38 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-input

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

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [git pull] Input updates for v5.15-rc0
  2021-09-10  4:38 [git pull] Input updates for v5.15-rc0 Dmitry Torokhov
@ 2021-09-11 17:30 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2021-09-11 17:30 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Linus Torvalds, linux-kernel, linux-input

The pull request you sent on Thu, 9 Sep 2021 21:38:50 -0700:

> git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/765092e4cdaa8439b969952ec4e6de3b84241f90

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-09-11 17:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-10  4:38 [git pull] Input updates for v5.15-rc0 Dmitry Torokhov
2021-09-11 17:30 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).