All of lore.kernel.org
 help / color / mirror / Atom feed
* [git pull] Input updates for 2.6.31-rc0
@ 2009-06-20  6:10 Dmitry Torokhov
  0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2009-06-20  6:10 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, linux-kernel, linux-input

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. There are a couple of
drivers that did not make into this pull request (gpio matrix in
particular), I intend to submit it in -rc1. I so hope I won't be moving
again for a while...

Changelog:
---------

Alek Du (1):
      Input: gpio-keys - change timer to workqueue

Aristeu Sergio Rozanski Filho (1):
      Input: uinput - flush all pending ff effects before destroying device

Daniel Mack (1):
      Input: add driver for EETI touchpanels

David Brownell (1):
      Input: add dm355evm_keys driver

Dmitry Torokhov (9):
      Input: gtco - add MODULE_DESCRIPTION()
      Input: fp801-gp - add MODULE_DESCRIPTION()
      Input: gameport - rearrange EXPORT_SYMBOL() markings
      Input: serio - rearrange EXPORT_SYMBOL() markings
      Input: gpio-keys - remove depreciated IRQF_SAMPLE_RANDOM flag
      Input: keyboard - remove warning about raw mode not supported
      Input: ALPS - Dell Latitude D630/D800 have DualPoint
      Input: lifebook - don't send incomplete events
      Input: serio - do not use deprecated dev.power.power_state

Felipe Balbi (2):
      Input: add twl4030-pwrbutton driver
      Input: introduce lm8323 keypad driver
w
Greg Kroah-Hartman (1):
      Input: wm97xx - do not access dev->driver_data directly

H Hartley Sweeten (2):
      Input: rotary_encoder - add support for REL_* axes
      Input: add matrix keypad driver for Cirrus EP93xx

Hans-Christian Egtvedt (1):
      Input: add wm97xx accelerated driver for Atmel microprocessors

Jeremy Huddleston (1):
      Input: appletouch - improve finger detection

Kwangwoo Lee (1):
      Input: tsc2007 - make sure platform provides get_pendown_state()

Michael Roth (3):
      Input: ads7846 - support swapping x and y axes
      Input: ads7846 - more detailed model name in sysfs
      Input: ads7846 - pin change interrupt support

Mike Rapoport (1):
      Input: add driver for Synaptics I2C touchpad

Ping Cheng (2):
      Input: wacom - add support for Intuos4 tablets
      Input: wacom - clear Intuos4 wheel data when finger leaves proximity

Sebastian Andrzej Siewior (1):
      Input: ucb1400 - move static function from header into core

Tero Saarni (1):
      Input: synaptics - add support for reporting x/y resolution

Thadeu Lima de Souza Cascardo (2):
      Input: fix typo in documentation
      Input: simplify name handling for certain input handles

Ulrich Dangel (1):
      Input: ALPS - handle touchpoints buttons correctly

Ville Syrjala (1):
      Input: ati_remote2 - use non-atomic bitops

Wan ZongShun (1):
      Input: add support for touchscreen on W90P910 ARM platform

Zephaniah E. Hull (1):
      Input: psmouse - ESD workaround fix for OLPC XO touchpad


Diffstat:
--------

 Documentation/input/input.txt                     |    2 +-
 Documentation/input/rotary-encoder.txt            |    9 +-
 arch/arm/mach-ep93xx/include/mach/ep93xx_keypad.h |   42 +
 drivers/char/keyboard.c                           |    2 -
 drivers/input/evdev.c                             |   21 +-
 drivers/input/gameport/fm801-gp.c                 |    1 +
 drivers/input/gameport/gameport.c                 |   25 +-
 drivers/input/joydev.c                            |   14 +-
 drivers/input/keyboard/Kconfig                    |   21 +
 drivers/input/keyboard/Makefile                   |    2 +
 drivers/input/keyboard/ep93xx_keypad.c            |  470 +++++++++++
 drivers/input/keyboard/gpio_keys.c                |   35 +-
 drivers/input/keyboard/lm8323.c                   |  878 +++++++++++++++++++++
 drivers/input/misc/Kconfig                        |   19 +
 drivers/input/misc/Makefile                       |    2 +
 drivers/input/misc/ati_remote2.c                  |   16 +-
 drivers/input/misc/dm355evm_keys.c                |  329 ++++++++
 drivers/input/misc/rotary_encoder.c               |   61 +-
 drivers/input/misc/twl4030-pwrbutton.c            |  145 ++++
 drivers/input/misc/uinput.c                       |   94 ++-
 drivers/input/mouse/Kconfig                       |   18 +
 drivers/input/mouse/Makefile                      |    1 +
 drivers/input/mouse/alps.c                        |   31 +-
 drivers/input/mouse/appletouch.c                  |    2 +-
 drivers/input/mouse/lifebook.c                    |   25 +-
 drivers/input/mouse/psmouse-base.c                |    4 +-
 drivers/input/mouse/synaptics.c                   |   28 +
 drivers/input/mouse/synaptics.h                   |    2 +
 drivers/input/mouse/synaptics_i2c.c               |  676 ++++++++++++++++
 drivers/input/mousedev.c                          |    9 +-
 drivers/input/serio/i8042.c                       |   17 +-
 drivers/input/serio/serio.c                       |   58 +-
 drivers/input/tablet/gtco.c                       |    1 +
 drivers/input/tablet/wacom.h                      |    5 +-
 drivers/input/tablet/wacom_sys.c                  |   13 +
 drivers/input/tablet/wacom_wac.c                  |  171 +++-
 drivers/input/tablet/wacom_wac.h                  |    3 +
 drivers/input/touchscreen/Kconfig                 |   32 +
 drivers/input/touchscreen/Makefile                |    3 +
 drivers/input/touchscreen/ads7846.c               |   23 +-
 drivers/input/touchscreen/atmel-wm97xx.c          |  446 +++++++++++
 drivers/input/touchscreen/eeti_ts.c               |  286 +++++++
 drivers/input/touchscreen/tsc2007.c               |    2 +-
 drivers/input/touchscreen/w90p910_ts.c            |  350 ++++++++
 drivers/mfd/ucb1400_core.c                        |   20 +
 include/linux/gameport.h                          |    3 +-
 include/linux/i2c/lm8323.h                        |   46 ++
 include/linux/input.h                             |    2 +
 include/linux/rotary_encoder.h                    |    2 +
 include/linux/serio.h                             |    9 +-
 include/linux/spi/ads7846.h                       |    1 +
 include/linux/ucb1400.h                           |   23 +-
 52 files changed, 4256 insertions(+), 244 deletions(-)
 create mode 100644 arch/arm/mach-ep93xx/include/mach/ep93xx_keypad.h
 create mode 100644 drivers/input/keyboard/ep93xx_keypad.c
 create mode 100644 drivers/input/keyboard/lm8323.c
 create mode 100644 drivers/input/misc/dm355evm_keys.c
 create mode 100644 drivers/input/misc/twl4030-pwrbutton.c
 create mode 100644 drivers/input/mouse/synaptics_i2c.c
 create mode 100644 drivers/input/touchscreen/atmel-wm97xx.c
 create mode 100644 drivers/input/touchscreen/eeti_ts.c
 create mode 100644 drivers/input/touchscreen/w90p910_ts.c
 create mode 100644 include/linux/i2c/lm8323.h

-- 
Dmitry


^ permalink raw reply	[flat|nested] 2+ messages in thread

* [git pull] Input updates for 2.6.31-rc0
@ 2009-07-08  6:50 Dmitry Torokhov
  0 siblings, 0 replies; 2+ messages in thread
From: Dmitry Torokhov @ 2009-07-08  6:50 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, linux-kernel, linux-input

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. It contains a few bugfixes
and also a driver for GPIO-based matrix keyboards that's been cooking
for quite a time.

Changelog:
---------

David Brownell (1):
      Input: dm355evm_keys - fix kconfig symbol names

Dmitry Torokhov (1):
      Input: arrange keyboards alphabetically

Eric Miao (1):
      Input: add support for generic GPIO-based matrix keypad

Jani Nikula (2):
      Input: gpio-keys - revert 'change timer to workqueue'
      Input: gpio-keys - avoid possibility of sleeping in timer function

Ping Cheng (1):
      Input: wacom - add DTF720a support and fix rotation on Intuos3

Saeed Bishara (1):
      Input: gpio_mouse - use standard driver registration method

Thadeu Lima de Souza Cascardo (1):
      Input: mark serio and i8042 as suspended when hibernating too

Yan Li (1):
      Input: i8042 - more reset quirks for MSI Wind-clone netbooks


Diffstat:
--------

 drivers/input/keyboard/Kconfig         |  294 +++++++++++----------
 drivers/input/keyboard/Makefile        |   33 ++--
 drivers/input/keyboard/gpio_keys.c     |   33 ++-
 drivers/input/keyboard/matrix_keypad.c |  453 ++++++++++++++++++++++++++++++++
 drivers/input/mouse/gpio_mouse.c       |   11 +-
 drivers/input/serio/i8042-x86ia64io.h  |   28 ++
 drivers/input/serio/i8042.c            |    7 +-
 drivers/input/serio/serio.c            |    7 +-
 drivers/input/tablet/wacom_wac.c       |    6 +-
 drivers/mfd/dm355evm_msp.c             |    3 +-
 include/linux/input/matrix_keypad.h    |   65 +++++
 11 files changed, 757 insertions(+), 183 deletions(-)
 create mode 100644 drivers/input/keyboard/matrix_keypad.c
 create mode 100644 include/linux/input/matrix_keypad.h

-- 
Dmitry


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-07-08  6:51 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-06-20  6:10 [git pull] Input updates for 2.6.31-rc0 Dmitry Torokhov
2009-07-08  6:50 Dmitry Torokhov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.