From: Jiri Kosina <jikos@kernel.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org
Subject: [GIT PULL] HID for 4.11
Date: Mon, 20 Feb 2017 16:20:19 +0100 (CET) [thread overview]
Message-ID: <alpine.LSU.2.20.1702201508280.24579@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 for 4.11:
=====
- a lot of Wacom driver updates; most notably second generation Intuos Pro
is now supported, code from Aaron Armstrong Skomra and Jason Gerecke
- Surface 3 and 4 Type Cover Pro support from Daniel Keller, Dennis Chen
and Yuta Kobayashi
- hid-rmi is now generic transport driver, used by synaptics-rmi4; Support
the Lenovo Thinkpad X1 Tablet dock follows on top, from Andrew Duggan
- a few misc bugfixes and improvements here and there
=====
Thanks.
----------------------------------------------------------------
Aaron Armstrong Skomra (5):
HID: wacom: generic: remove input_event_flag
HID: wacom: generic: add support for touchring
HID: wacom: generic: add vendor defined touch
HID: wacom: generic: support generic touch switch
HID: wacom: generic: support LEDs
Andrew Duggan (3):
HID: rmi: Make hid-rmi a transport driver for synaptics-rmi4
HID: rmi: Handle all Synaptics touchpads using hid-rmi
HID: rmi: Support the Lenovo Thinkpad X1 Tablet dock using hid-rmi
Benjamin Tissoires (4):
HID: wacom: release the resources before leaving despite devm
HID: wacom: remove warning while disconnecting devices
HID: wacom: do not attempt to switch mode while in probe
HID: multitouch: fix LG Melfas touchscreen
Bhumika Goyal (1):
HID: intel-ish-hid: constify device_type structure
Corentin Labbe (1):
HID: intel-ish-hid: Remove unneeded linux/miscdevice.h include
Daniel Keller (1):
HID: multitouch: enable Surface 4 Type Cover Pro (non-JP) to report multitouch data
Dennis Chen (2):
HID: multitouch: enable Surface 3 Type Cover Pro to report multitouch data
HID: whitespace cleanup
Even Xu (1):
HID: intel-ish-hid: ipc: check FW status to distinguish ISH resume paths
Grant Grundler (1):
HID: remove use of DRIVER_LICENSE
Jason Gerecke (4):
HID: wacom: Enable HID_GENERIC codepath for Bluetooth devices
HID: wacom: Move WAC_CMD_* into wacom_wac.h
HID: wacom: Support 2nd-gen Intuos Pro's Bluetooth classic interface
HID: wacom: Bluetooth IRQ for Intuos Pro should handle prox/range
Marcel Hasler (2):
HID: add device ID for updated Mayflash/Dragonrise GameCube adapter
HID: hid-mf: add force feedback support for Mayflash DolphinBar and GameCube
Nicolas Iooss (2):
HID: intel-ish-hid: add printf attribute to print_log()
HID: intel-ish-hid: format 32-bit integers with %X
Ping Cheng (1):
HID: wacom: don't apply generic settings to old devices
Yuta Kobayashi (1):
HID: multitouch: enable the Surface 4 Type Cover Pro (JP) to report multitouch data
drivers/hid/Kconfig | 5 +
drivers/hid/hid-core.c | 27 +-
drivers/hid/hid-ids.h | 11 +-
drivers/hid/hid-mf.c | 19 +-
drivers/hid/hid-microsoft.c | 12 -
drivers/hid/hid-multitouch.c | 44 ++
drivers/hid/hid-rmi.c | 975 ++++------------------------
drivers/hid/intel-ish-hid/ipc/hw-ish-regs.h | 8 +
drivers/hid/intel-ish-hid/ipc/hw-ish.h | 12 +
drivers/hid/intel-ish-hid/ipc/pci-ish.c | 38 +-
drivers/hid/intel-ish-hid/ishtp-hid.c | 2 +-
drivers/hid/intel-ish-hid/ishtp/bus.c | 2 +-
drivers/hid/intel-ish-hid/ishtp/hbm.c | 1 -
drivers/hid/intel-ish-hid/ishtp/init.c | 1 -
drivers/hid/intel-ish-hid/ishtp/ishtp-dev.h | 3 +-
drivers/hid/usbhid/hid-core.c | 3 +-
drivers/hid/usbhid/hid-quirks.c | 12 +-
drivers/hid/usbhid/usbkbd.c | 3 +-
drivers/hid/usbhid/usbmouse.c | 3 +-
drivers/hid/wacom.h | 5 +-
drivers/hid/wacom_sys.c | 147 ++++-
drivers/hid/wacom_wac.c | 289 ++++++++-
drivers/hid/wacom_wac.h | 37 +-
23 files changed, 698 insertions(+), 961 deletions(-)
--
Jiri Kosina
SUSE Labs
next reply other threads:[~2017-02-20 15:20 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-02-20 15:20 Jiri Kosina [this message]
2017-02-21 2:48 ` Linus Torvalds
2017-02-21 3:03 ` Linus Torvalds
2017-02-21 3:19 ` Linus Torvalds
2017-02-21 4:13 ` Linus Torvalds
2017-02-21 4:37 ` Linus Torvalds
2017-03-01 0:56 ` Linus Torvalds
2017-03-01 2:31 ` Andrew Duggan
2017-03-01 3:24 ` Peter Hutterer
2017-03-01 5:05 ` Linus Torvalds
2017-03-01 7:43 ` Andrew Duggan
2017-03-01 9:03 ` Benjamin Tissoires
2017-03-01 9:06 ` Benjamin Tissoires
2017-03-01 17:31 ` Dmitry Torokhov
2017-03-01 17:54 ` Linus Torvalds
2017-03-01 17:58 ` Dmitry Torokhov
2017-03-01 18:02 ` Linus Torvalds
2017-02-21 14:17 ` [PATCH] HID: rmi: fallback to generic/multitouch if hid-rmi is not built (was Re: [GIT PULL] HID for 4.11) Jiri Kosina
2017-02-21 15:43 ` Linus Torvalds
2017-02-21 15:46 ` Jiri Kosina
2017-02-21 15:49 ` Linus Torvalds
2017-02-21 17:42 ` Benjamin Tissoires
2017-02-21 21:03 ` Jiri Kosina
2017-02-22 0:53 ` Jason Gerecke
2017-02-21 17:37 ` Benjamin Tissoires
2017-02-21 21:16 ` Andrew Duggan
2017-02-21 9:32 ` ath10k regression on XPS13 Kalle Valo
2017-02-21 18:18 ` David Miller
2017-02-21 18:38 ` Kalle Valo
2017-02-21 18:53 ` David Miller
2017-02-21 19:49 ` Kalle Valo
2017-02-21 21:00 ` David Miller
2017-02-21 18:52 ` Linus Torvalds
2017-02-21 21:01 ` David Miller
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=alpine.LSU.2.20.1702201508280.24579@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
all inboxes | Powered by JetHome®