lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:   Mon, 20 Aug 2018 18:23:06 +0200 (CEST)
From:   Jiri Kosina <jikos@...nel.org>
To:     Linus Torvalds <torvalds@...ux-foundation.org>
cc:     linux-kernel@...r.kernel.org
Subject: [GIT PULL] HID

Linus,

please pull from

  git://git.kernel.org/pub/scm/linux/kernel/git/jikos/hid.git for-linus

to receive HID subsystem updates:

=====
- touch_max detection improvements and quirk handling fixes in wacom
  driver from Jason Gerecke and Ping Cheng
- Palm rejection from Dmitry Torokhov and _dial support from Benjamin  
  Tissoires for hid-multitouch driver
- Low voltage support for i2c-hid driver from Stephen Boyd
- Guitar-Hero support from Nicolas Adenis-Lamarre
- other assorted small fixes and device ID additions
=====

Thanks.

----------------------------------------------------------------
Anton Vasilyev (1):
      HID: intel_ish-hid: tx_buf memory leak on probe/remove

Benjamin Tissoires (9):
      input: add MT_TOOL_DIAL
      HID: multitouch: make sure the static list of class is not changed
      HID: multitouch: Store per collection multitouch data
      HID: multitouch: store a per application quirks value
      HID: multitouch: ditch mt_report_id
      HID: multitouch: remove one copy of values
      HID: input: enable Totem on the Dell Canvas 27
      HID: core: do not upper bound the collection stack
      HID: microsoft: support the Surface Dial

Colin Ian King (1):
      HID: intel-ish-hid: remove redundant variable num_frags

Daniel M. Lambea (2):
      HID: cougar: make compare_device_paths reusable
      HID: cougar: Add support for the Cougar 500k Gaming Keyboard

Dmitry Torokhov (3):
      HID: multitouch: report MT_TOOL_PALM for non-confident touches
      HID: multitouch: touchscreens also use confidence reports
      HID: multitouch: handle palm for touchscreens

Hanno Zulla (5):
      HID: hid-sony.c: Use devm_ api to simplify sony_register_touchpad()
      HID: hid-sony.c: Use devm_ api to simplify sony_register_sensors()
      HID: hid-sony.c: Use devm_ api to simplify sony_leds_init()
      HID: hid-sony.c: Use devm_ api to simplify sony_battery_probe()
      HID: hid-sony.c: Use devm_ api to simplify sc->output_report_dmabuf

Hans de Goede (9):
      HID: elan: Remove unused max_area_x and max_area_y vatiables
      HID: elan: Stop claiming we have TOUCH_MAJOR and then never reporting it
      HID: elan: Correctly report MT_PRESSURE instead of TOOL_WIDTH
      HID: elan: Hardcode finger-count and usb-interface
      HID: elan: Query device max_x and max_y value from touchpad
      HID: elan: Query resolution from the touchpad
      HID: elan: Add a flag for selecting if the touchpad has a LED
      HID: elan: Add USB-id for HP x2 10-n000nd touchpad
      HID: elan: Add support for touchpad on the Toshiba Click Mini L9W

Jason Gerecke (2):
      HID: wacom: Replace touch_max fixup code with static touch_max definitions
      HID: wacom: Move handling of HID quirks into a dedicated function

Nicolas Adenis-Lamarre (1):
      HID: wiimote: add support for Guitar-Hero devices

Ping Cheng (1):
      HID: wacom: convert Wacom custom usages to standard HID usages

Robert Munteanu (1):
      HID: redragon: fix num lock and caps lock LEDs

Sebastian Andrzej Siewior (1):
      HID: usbhid: use irqsave() in USB's complete callback

Srinivas Pandruvada (1):
      HID: intel-ish-hid: Prevent loading of driver on Mehlow

Stephen Boyd (2):
      HID: i2c-hid: Use devm to allocate i2c_hid struct
      HID: i2c-hid: Add vddl regulator control

Zhouyang Jia (1):
      HID: hid-ntrig: add error handling for sysfs_create_group

 .../devicetree/bindings/input/hid-over-i2c.txt     |   3 +-
 Documentation/input/multi-touch-protocol.rst       |  12 +-
 drivers/hid/Kconfig                                |  10 +
 drivers/hid/Makefile                               |   1 +
 drivers/hid/hid-core.c                             |  40 +-
 drivers/hid/hid-cougar.c                           | 312 +++++++
 drivers/hid/hid-elan.c                             | 235 +++--
 drivers/hid/hid-ids.h                              |   5 +
 drivers/hid/hid-input.c                            |   3 +
 drivers/hid/hid-microsoft.c                        |  49 +-
 drivers/hid/hid-multitouch.c                       | 989 +++++++++++++--------
 drivers/hid/hid-ntrig.c                            |   2 +
 drivers/hid/hid-redragon.c                         |  26 +-
 drivers/hid/hid-sony.c                             | 164 +---
 drivers/hid/hid-wiimote-core.c                     |  14 +
 drivers/hid/hid-wiimote-modules.c                  | 440 +++++++++
 drivers/hid/hid-wiimote.h                          |   3 +
 drivers/hid/i2c-hid/i2c-hid.c                      |  57 +-
 drivers/hid/intel-ish-hid/ipc/ipc.c                |   9 +-
 drivers/hid/intel-ish-hid/ipc/pci-ish.c            |  13 +-
 drivers/hid/intel-ish-hid/ishtp/hbm.c              |   2 -
 drivers/hid/usbhid/hid-core.c                      |   7 +-
 drivers/hid/wacom_sys.c                            | 123 ++-
 drivers/hid/wacom_wac.c                            |  20 +-
 include/linux/hid.h                                |  17 +-
 include/linux/platform_data/i2c-hid.h              |   7 +-
 include/uapi/linux/input.h                         |   9 +-
 27 files changed, 1824 insertions(+), 748 deletions(-)
 create mode 100644 drivers/hid/hid-cougar.c

-- 
Jiri Kosina
SUSE Labs

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ