[git pull] Input updates for v6.4-rc0

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Linus,

Please pull from:

	git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git tags/input-for-v6.4-rc0

to receive updates for the input subsystem. You will get:

- a new driver for Novatek touch controllers
- a new driver for power button for NXP BBNSM
- a skeleton KUnit tests for the input core
- improvements to Xpad game controller driver to support more devices
- improvements to edt-ft5x06, hideep and other drivers

Changelog:
---------

Andy Shevchenko (1):
      Input: matrix_keypad - replace header inclusions by forward declarations

Benjamin Bara (1):
      Input: tsc2007 - enable cansleep pendown GPIO

Daniel Golle (1):
      Input: edt-ft5x06 - select REGMAP_I2C

Dario Binacchi (9):
      Input: edt-ft5x06 - fix indentation
      Input: edt-ft5x06 - remove unnecessary blank lines
      Input: edt-ft5x06 - add spaces to ensure format specification
      Input: edt-ft5x06 - don't recalculate the CRC
      Input: edt-ft5x06 - remove code duplication
      Input: edt-ft5x06 - don't print error messages with dev_dbg()
      Input: edt-ft5x06 - convert to use regmap API
      Input: edt-ft5x06 - unify the crc check
      Input: edt-ft5x06 - calculate points data length only once

Dmitry Torokhov (2):
      ARM: spitz: include header defining input event codes
      Revert "Input: xpad - fix support for some third-party controllers"

Gergo Koteles (1):
      Input: gpio-keys - add support for linux,input-value DTS property

Hans de Goede (3):
      Input: hideep - silence error in SW_RESET()
      Input: hideep - optionally reset controller work mode to native HiDeep protocol
      Input: add a new Novatek NVT-ts driver

Jacky Bai (1):
      Input: bbnsm_pwrkey - add bbnsm power key support

Javier Martinez Canillas (1):
      Input: Add KUnit tests for some of the input core helper functions

Jiapeng Chong (2):
      Input: cma3000_d0x - remove unneeded code
      Input: synaptics-rmi4 - fix function name in kerneldoc

JungHoon Hyun (1):
      Input: melfas_mip4 - report palm touches

Krzysztof Kozlowski (4):
      Input: st-keyscan - drop of_match_ptr for ID table
      Input: tm2-touchkey - drop of_match_ptr for ID table
      Input: sun4i-ts - drop of_match_ptr for ID table
      Input: bcm_iproc_tsc - drop of_match_ptr for ID table

Linus Walleij (1):
      dt-bindings: google,cros-ec-keyb: Fix spelling error

Miaoqian Lin (1):
      Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe

Peng Fan (1):
      dt-bindings: input: pwm-beeper: convert to dt schema

Pierre-Loup A. Griffais (1):
      Input: xpad - treat Qanba controllers as Xbox360 controllers

Randy Dunlap (1):
      Input: hp_sdc_rtc - mark an unused function as __maybe_unused

Rob Herring (3):
      Input: Use of_property_read_bool() for boolean properties
      Input: zinitix - use of_property_present() for testing DT property presence
      dt-bindings: input: Drop unneeded quotes

Uwe Kleine-König (1):
      Input: iqs62x-keys - suppress duplicated error message in .remove()

Vicki Pfau (5):
      Input: xpad - remove unused field in VID/PID table
      Input: xpad - add VID for Turtle Beach controllers
      Input: xpad - fix support for some third-party controllers
      Input: xpad - add constants for GIP interface numbers
      Input: xpad - fix PowerA EnWired Controller guide button

Yang Li (1):
      Input: hideep - clean up some inconsistent indenting

Diffstat:
--------

 .../bindings/input/google,cros-ec-keyb.yaml        |   2 +-
 .../devicetree/bindings/input/pwm-beeper.txt       |  24 -
 .../devicetree/bindings/input/pwm-beeper.yaml      |  41 ++
 MAINTAINERS                                        |   6 +
 arch/arm/mach-pxa/spitz.c                          |   1 +
 drivers/input/Kconfig                              |  10 +
 drivers/input/Makefile                             |   1 +
 drivers/input/joystick/xpad.c                      |  23 +-
 drivers/input/keyboard/gpio_keys.c                 |   3 +
 drivers/input/keyboard/iqs62x-keys.c               |   2 +-
 drivers/input/keyboard/matrix_keypad.c             |   6 +-
 drivers/input/keyboard/omap4-keypad.c              |   3 +-
 drivers/input/keyboard/samsung-keypad.c            |   3 +-
 drivers/input/keyboard/st-keyscan.c                |   2 +-
 drivers/input/keyboard/tegra-kbc.c                 |   3 +-
 drivers/input/keyboard/tm2-touchkey.c              |   2 +-
 drivers/input/misc/Kconfig                         |  11 +
 drivers/input/misc/Makefile                        |   1 +
 drivers/input/misc/cma3000_d0x.c                   |   2 -
 drivers/input/misc/hp_sdc_rtc.c                    |   2 +-
 drivers/input/misc/nxp-bbnsm-pwrkey.c              | 193 ++++++++
 drivers/input/rmi4/rmi_bus.c                       |   2 +-
 drivers/input/tests/.kunitconfig                   |   3 +
 drivers/input/tests/Makefile                       |   3 +
 drivers/input/tests/input_test.c                   | 150 +++++++
 drivers/input/touchscreen/Kconfig                  |  11 +
 drivers/input/touchscreen/Makefile                 |   1 +
 drivers/input/touchscreen/bcm_iproc_tsc.c          |   2 +-
 drivers/input/touchscreen/edt-ft5x06.c             | 496 +++++++++++----------
 drivers/input/touchscreen/hideep.c                 |  33 +-
 drivers/input/touchscreen/melfas_mip4.c            |  19 +-
 drivers/input/touchscreen/novatek-nvt-ts.c         | 301 +++++++++++++
 drivers/input/touchscreen/raspberrypi-ts.c         |   3 +-
 drivers/input/touchscreen/sun4i-ts.c               |   2 +-
 drivers/input/touchscreen/tsc2007_core.c           |  17 +-
 drivers/input/touchscreen/zinitix.c                |   2 +-
 include/linux/input/matrix_keypad.h                |   5 +-
 37 files changed, 1067 insertions(+), 324 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/input/pwm-beeper.txt
 create mode 100644 Documentation/devicetree/bindings/input/pwm-beeper.yaml
 create mode 100644 drivers/input/misc/nxp-bbnsm-pwrkey.c
 create mode 100644 drivers/input/tests/.kunitconfig
 create mode 100644 drivers/input/tests/Makefile
 create mode 100644 drivers/input/tests/input_test.c
 create mode 100644 drivers/input/touchscreen/novatek-nvt-ts.c

Thanks.


-- 
Dmitry



[Index of Archives]     [Linux Media Devel]     [Linux USB Devel]     [Video for Linux]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [Linux Wireless Networking]     [Linux Omap]

  Powered by Linux