* [git pull] Input updates for 3.18-rc0
@ 2014-10-07 16:59 Dmitry Torokhov
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2014-10-07 16:59 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, linux-input, Jiri Kosina
Hi Linus,
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus
or
master.kernel.org:/pub/scm/linux/kernel/git/dtor/input.git for-linus
to receive updates for the input subsystem. You will receive a few new
haptic/button drivers, a rudimentary support for laptops using FocalTech
touchpads; xpad driver will bind to more devices, and a few other driver
fixes.
Changelog:
---------
Benjamin Valentin (1):
Input: xpad - sync device IDs with xboxdrv
Dan Murphy (5):
Input: drv260x - add TI drv260x haptics driver
Input: drv260x - remove unused defines
Input: drv260x - add check for ERM mode and LRA Libraries
Input: drv260x - fix binding document
Input: add support for the DRV2667 haptic driver
Frank Razenberg (1):
Input: xpad - add VID/PID for Razer Sabertooth
Hans de Goede (2):
Input: psmouse - add psmouse_matches_pnp_id helper function
Input: psmouse - add support for detecting FocalTech PS/2 touchpads
Jaewon Kim (1):
Input: add haptic driver on max77693
Jin Yao (1):
Input: soc_button_array - convert to platform bus
Nishanth Menon (3):
Input: introduce palmas-pwrbutton
Input: palmas-pwrbutton - use IRQF_ONESHOT
Input: palmas-pwrbutton - fix typo in the license string
Takashi Iwai (1):
Input: joystick - use ktime for measuring timing
Todd Broch (1):
Input: cros_ec_keyb - optimize ghosting algorithm
Diffstat:
--------
.../devicetree/bindings/input/ti,drv260x.txt | 50 ++
.../devicetree/bindings/input/ti,drv2667.txt | 17 +
.../bindings/input/ti,palmas-pwrbutton.txt | 36 +
drivers/acpi/acpi_pnp.c | 2 -
drivers/input/gameport/gameport.c | 41 +-
drivers/input/joystick/analog.c | 71 +-
drivers/input/joystick/xpad.c | 34 +
drivers/input/keyboard/cros_ec_keyb.c | 92 +--
drivers/input/misc/Kconfig | 43 ++
drivers/input/misc/Makefile | 4 +
drivers/input/misc/drv260x.c | 741 +++++++++++++++++++++
drivers/input/misc/drv2667.c | 500 ++++++++++++++
drivers/input/misc/max77693-haptic.c | 357 ++++++++++
drivers/input/misc/palmas-pwrbutton.c | 332 +++++++++
drivers/input/misc/soc_button_array.c | 60 +-
drivers/input/mouse/Makefile | 2 +-
drivers/input/mouse/focaltech.c | 52 ++
drivers/input/mouse/focaltech.h | 22 +
drivers/input/mouse/psmouse-base.c | 30 +
drivers/input/mouse/psmouse.h | 1 +
drivers/input/mouse/synaptics.c | 17 +-
include/dt-bindings/input/ti-drv260x.h | 36 +
include/linux/mfd/max77693-private.h | 9 +
include/linux/platform_data/drv260x-pdata.h | 28 +
24 files changed, 2468 insertions(+), 109 deletions(-)
create mode 100644 Documentation/devicetree/bindings/input/ti,drv260x.txt
create mode 100644 Documentation/devicetree/bindings/input/ti,drv2667.txt
create mode 100644 Documentation/devicetree/bindings/input/ti,palmas-pwrbutton.txt
create mode 100644 drivers/input/misc/drv260x.c
create mode 100644 drivers/input/misc/drv2667.c
create mode 100644 drivers/input/misc/max77693-haptic.c
create mode 100644 drivers/input/misc/palmas-pwrbutton.c
create mode 100644 drivers/input/mouse/focaltech.c
create mode 100644 drivers/input/mouse/focaltech.h
create mode 100644 include/dt-bindings/input/ti-drv260x.h
create mode 100644 include/linux/platform_data/drv260x-pdata.h
--
Dmitry
^ permalink raw reply [flat|nested] 2+ messages in thread
* [git pull] Input updates for 3.18-rc0
@ 2014-10-31 23:48 Dmitry Torokhov
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2014-10-31 23:48 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, linux-input, Jiri Kosina
Hi Linus,
Please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git for-linus
or
master.kernel.org:/pub/scm/linux/kernel/git/dtor/input.git for-linus
to receive updates for the input subsystem. You will get a bunch of
fixes for minor defects reported by Coverity, a few driver fixups and
revert of i8042.nomux change so that we are once again enable active MUX
mode if box claims to support it.
Changelog:
---------
Alexandre Courbot (1):
Input: soc_button_array - update calls to gpiod_get*()
Dmitry Eremin-Solenikov (1):
Input: wm97xx - adapt parameters to tosa touchscreen.
Dmitry Torokhov (6):
Input: opencores-kbd - fix error handling
Input: ims-pcu - fix dead code in ims_pcu_ofn_reg_addr_store()
Input: vsxxxaa - fix code dropping bytes from queue
Input: psmouse - remove unneeded check in psmouse_reconnect()
Input: max77693-haptic - fix potential overflow
Revert "Input: i8042 - disable active multiplexing by default"
Hans de Goede (1):
Input: i8042 - quirks for Fujitsu Lifebook A544 and Lifebook AH544
Linus Walleij (1):
Input: stmpe-keypad - fix valid key line bitmask
Tobias Klauser (2):
Input: altera_ps2 - write to correct register when disabling interrupts
Input: altera_ps2 - use correct type for irq return value
Diffstat:
--------
Documentation/kernel-parameters.txt | 2 +-
drivers/input/keyboard/opencores-kbd.c | 2 +-
drivers/input/keyboard/stmpe-keypad.c | 2 +-
drivers/input/misc/ims-pcu.c | 2 +-
drivers/input/misc/max77693-haptic.c | 5 +-
drivers/input/misc/soc_button_array.c | 2 +-
drivers/input/mouse/psmouse-base.c | 7 -
drivers/input/mouse/vsxxxaa.c | 2 +-
drivers/input/serio/altera_ps2.c | 4 +-
drivers/input/serio/i8042-x86ia64io.h | 297 +++++++++++++++++++++++++++++++-
drivers/input/serio/i8042.c | 2 +-
drivers/input/touchscreen/wm97xx-core.c | 4 +-
12 files changed, 302 insertions(+), 29 deletions(-)
--
Dmitry
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-10-31 23:48 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-31 23:48 [git pull] Input updates for 3.18-rc0 Dmitry Torokhov
-- strict thread matches above, loose matches on Subject: below --
2014-10-07 16:59 Dmitry Torokhov
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).