* [git pull] Input updates for 3.12-rc0
@ 2013-09-07 3:34 Dmitry Torokhov
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2013-09-07 3:34 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, linux-input
[-- Attachment #1: Type: text/plain, Size: 4956 bytes --]
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 new driver
for slidebar on Ideapad laptops and a bunch of assorted driver fixes.
Changelog:
---------
Andrey Moiseev (1):
Input: add driver for slidebar on Lenovo IdeaPad laptops
Bo Shen (1):
Input: qt1070 - add power management ops
David Herrmann (1):
Input: add SYN_MAX and SYN_CNT constants
Fabio Estevam (2):
Input: egalax-ts - fix typo and improve text
Input: max11801_ts - convert to devm
Geert Uytterhoeven (1):
Input: cyttsp4 - kill 'defined but not used' compiler warnings
Illia Smyrnov (5):
Input: omap-keypad - use bitfiled instead of hardcoded values
Input: omap-keypad - convert to threaded IRQ
Input: omap-keypad - clear interrupts on open
Input: omap-keypad - enable wakeup capability for keypad.
Input: omap-keypad - set up irq type from DT
Javier Martinez Canillas (1):
Input: MAINTAINERS - change maintainer for cyttsp driver
Jingoo Han (5):
Input: max7359 - add CONFIG_PM_SLEEP to suspend/resume
Input: cy8ctmg110_ts - add CONFIG_PM_SLEEP to suspend/resume
Input: eeti_ts - add CONFIG_PM_SLEEP to suspend/resume
Input: pwm-beeper - add CONFIG_PM_SLEEP to suspend/resume
Input: joysticks - use dev_get_platdata()
Julia Lawall (2):
Input: tegra-kbc - simplify use of devm_ioremap_resource
Input: keyboard, serio - simplify use of devm_ioremap_resource
Mathieu J. Poirier (1):
Input: sysrq - DT binding for key sequence
Peter Ujfalusi (1):
Input: twl6040-vibra - remove support for legacy (pdata) mode
Ping Cheng (1):
Input: wacom - integrate resolution calculation
Sachin Kamat (4):
Input: wistron_btns - fix incorrect placement of __initconst
Input: lifebook - fix incorrect placement of __initconst
Input: synaptics - fix incorrect placement of __initconst
Input: htcpen - fix incorrect placement of __initdata
Stefan Lippers-Hollmann (3):
Input: wistron_btns - drop bogus MODULE_VERSION macro
Input: wistron_btns - mark the Medion MD96500 keymap as tested
Input: wistron_btns - add MODULE_DEVICE_TABLE
Wei Yongjun (3):
Input: as5011 - fix error return code in as5011_probe()
Input: wacom - fix error return code in wacom_probe()
Input: cyttsp4 - remove useless NULL test from cyttsp4_watchdog_timer()
Diffstat:
--------
.../devicetree/bindings/input/input-reset.txt | 33 ++
.../bindings/input/touchscreen/egalax-ts.txt | 2 +-
MAINTAINERS | 11 +-
drivers/input/joystick/as5011.c | 3 +-
drivers/input/joystick/maplecontrol.c | 4 +-
drivers/input/keyboard/imx_keypad.c | 7 +-
drivers/input/keyboard/max7359_keypad.c | 2 +-
drivers/input/keyboard/nspire-keypad.c | 7 +-
drivers/input/keyboard/omap4-keypad.c | 95 ++++--
drivers/input/keyboard/qt1070.c | 27 ++
drivers/input/keyboard/spear-keyboard.c | 7 +-
drivers/input/keyboard/tegra-kbc.c | 7 +-
drivers/input/misc/Kconfig | 10 +
drivers/input/misc/Makefile | 1 +
drivers/input/misc/ideapad_slidebar.c | 358 +++++++++++++++++++++
drivers/input/misc/pwm-beeper.c | 2 +-
drivers/input/misc/twl6040-vibra.c | 41 +--
drivers/input/misc/wistron_btns.c | 6 +-
drivers/input/mouse/lifebook.c | 2 +-
drivers/input/mouse/synaptics.c | 4 +-
drivers/input/serio/arc_ps2.c | 7 +-
drivers/input/serio/i8042.h | 24 --
drivers/input/serio/olpc_apsp.c | 3 -
drivers/input/tablet/wacom_sys.c | 87 +++--
drivers/input/tablet/wacom_wac.c | 19 +-
drivers/input/touchscreen/cy8ctmg110_ts.c | 6 +-
drivers/input/touchscreen/cyttsp4_core.c | 203 ++++++------
drivers/input/touchscreen/eeti_ts.c | 6 +-
drivers/input/touchscreen/htcpen.c | 2 +-
drivers/input/touchscreen/max11801_ts.c | 37 +--
drivers/tty/sysrq.c | 42 +++
include/linux/i8042.h | 24 ++
include/uapi/linux/input.h | 2 +
33 files changed, 770 insertions(+), 321 deletions(-)
create mode 100644 Documentation/devicetree/bindings/input/input-reset.txt
create mode 100644 drivers/input/misc/ideapad_slidebar.c
--
Dmitry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
* [git pull] Input updates for 3.12-rc0
@ 2013-09-15 5:34 Dmitry Torokhov
0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2013-09-15 5:34 UTC (permalink / raw)
To: Linus Torvalds; +Cc: linux-kernel, linux-input
[-- Attachment #1: Type: text/plain, Size: 830 bytes --]
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. The only change is David
Hermann's new EVIOCREVOKE evdev ioctl that allows safely passing file
descriptors to input devices to session processes and later being able
to stop delivery of events through these fds so that inactive sessions
will no longer receive user input that does not belong to them.
Changelog:
---------
David Herrmann (1):
Input: evdev - add EVIOCREVOKE ioctl
Diffstat:
--------
drivers/input/evdev.c | 37 +++++++++++++++++++++++++++++++------
include/uapi/linux/input.h | 1 +
2 files changed, 32 insertions(+), 6 deletions(-)
--
Dmitry
[-- Attachment #2: Type: application/pgp-signature, Size: 836 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-09-15 5:34 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-09-15 5:34 [git pull] Input updates for 3.12-rc0 Dmitry Torokhov
-- strict thread matches above, loose matches on Subject: below --
2013-09-07 3:34 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).