linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jiri Kosina <jikos@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org
Subject: [GIT PULL] HID
Date: Mon, 20 Aug 2018 18:23:06 +0200 (CEST)	[thread overview]
Message-ID: <nycvar.YFH.7.76.1808201816300.25787@cbobk.fhfr.pm> (raw)

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


             reply	other threads:[~2018-08-20 16:23 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-20 16:23 Jiri Kosina [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-06-08  8:36 [GIT PULL] HID Jiri Kosina
2018-01-31 15:48 Jiri Kosina
2017-12-30 11:19 Jiri Kosina
2017-01-11 21:48 Jiri Kosina
2016-05-03 10:42 Jiri Kosina
2015-08-10 22:13 Jiri Kosina
2015-07-24 13:21 Jiri Kosina
2015-01-09 14:43 Jiri Kosina
2014-12-12 10:42 Jiri Kosina
2014-11-13 20:06 Jiri Kosina
2014-10-29 14:01 Jiri Kosina
2014-08-27  7:23 Jiri Kosina
2014-08-21 17:43 Jiri Kosina
2014-08-22  7:40 ` Markus Trippelsdorf
2014-08-22  8:00   ` Jiri Kosina
2014-08-22  8:18     ` Markus Trippelsdorf
2014-08-22 14:25       ` Benjamin Tissoires
2014-07-07 14:01 Jiri Kosina
2014-05-07 12:54 Jiri Kosina
2014-04-18 13:26 Jiri Kosina

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=nycvar.YFH.7.76.1808201816300.25787@cbobk.fhfr.pm \
    --to=jikos@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 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).