All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-input@vger.kernel.org
Subject: [git pull] Input updates for v5.15-rc0
Date: Thu, 9 Sep 2021 21:38:50 -0700	[thread overview]
Message-ID: <YTrhWrjCkK8ttRDt@google.com> (raw)

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

             reply	other threads:[~2021-09-10  4:38 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-10  4:38 Dmitry Torokhov [this message]
2021-09-11 17:30 ` [git pull] Input updates for v5.15-rc0 pr-tracker-bot

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=YTrhWrjCkK8ttRDt@google.com \
    --to=dmitry.torokhov@gmail.com \
    --cc=linux-input@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.