All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	LKML <linux-kernel@vger.kernel.org>
Subject: [git pull] Input updates for 2.6.24-rc0
Date: Sat, 13 Oct 2007 16:14:35 -0400	[thread overview]
Message-ID: <200710131614.35356.dmitry.torokhov@gmail.com> (raw)

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
new drivers, fixes for existing ones and also input core will
finally have proper locking.

Changelog:
---------

Adrian McMenamin (1):
      Input: add support for SEGA Dreamcast keyboard

Alon Ziv (1):
      Input: psmouse - reset harder during probe

Andreas Herrmann (1):
      Input: auto-select INPUT for MAC_EMUMOUSEBTN option

Andrew McNabb (1):
      Input: adbhid - produce all CapsLock key events

Andrew Morton (1):
      Input: iforce - de-dosify iforce-protocol.txt

Anti Sullin (2):
      Input: gpio_keys - verify that supplied GPIO numbers are valid
      Input: gpio-keys - add suspend/resume support

Daniel Ritz (1):
      Input: usbtouchscreen - support DMC devices with empty EEPROM

Dmitry Torokhov (18):
      Input: xpad - use le16_to_cpup when parsing data stream
      Input: mark some functions __must_check
      Input: implement proper locking in input core
      Input: evdev - implement proper locking
      Input: mousedev - implement proper locking
      Input: joydev - implement proper locking
      Input: tsdev - implement proper locking
      Input: remove ec3104_keyb driver
      Input: lifebook - add signature of Panasonic CF-72
      HWMON: applesmc - convert to use input-polldev
      HWMON: ams - convert to use input-polldev
      Input: xpad - fix dependancy on LEDS class
      Input: jornada720_kbd - send MSC_SCAN events
      Input: ALPS - add signature for ThinkPad R61
      Input: lifebook - fix X and Y axis range
      Input: omap-keyboard - don't pretend we support changing keymap
      HWMON: hdaps - switch to using input-polldev
      Input: use full RCU API

Ilya Frolov (1):
      Input: usbtouchscreen - add support for GeneralTouch devices

Kristoffer Ericson (3):
      Input: add support for HP Jornada onboard keyboard (HP6XX)
      Input: add support for HP Jornada 7xx onboard keyboard
      Input: add support for the HP Jornada 7xx (710/720/728) touchscreen

Markus Armbruster (1):
      Input: i8042 - restore control register when enabling port fails

Michael Hennerich (1):
      Input: add support for Blackfin BF54x Keypad controller

Oliver Neukum (1):
      Input: fix open count handling in input interfaces

Ondrej Zary (1):
      Input: usbtouchscreen - add support for IdealTEK URTC1000

Rene Herman (1):
      Input: ucb1400_ts - use schedule_timeout_uninterruptible

Richard Purdie (1):
      Input: remove tsdev interface

Samuel Thibault (1):
      Input: keyboard - add CapsShift lock

Soeren Sonnenburg (1):
      Input: appletouch - another fix for idle reset logic

Stephen Hemminger (1):
      Input: polled device power saving

William Pettersson (1):
      Input: ALPS - add support for model found in Dell Vostro 1400

Diffstat:
--------
 Documentation/feature-removal-schedule.txt   |   14 -
 Documentation/kernel-parameters.txt          |    3 -
 arch/blackfin/mach-bf548/boards/ezkit.c      |    6 +-
 drivers/char/ec3104_keyb.c                   |  457 ----------------
 drivers/hwmon/Kconfig                        |    3 +
 drivers/hwmon/ams/ams-input.c                |   76 ++--
 drivers/hwmon/ams/ams.h                      |    5 +-
 drivers/hwmon/applesmc.c                     |   83 +--
 drivers/hwmon/hdaps.c                        |   55 +--
 drivers/input/Kconfig                        |   22 -
 drivers/input/Makefile                       |    1 -
 drivers/input/evdev.c                        |  708 ++++++++++++++++--------
 drivers/input/input-polldev.c                |    7 +-
 drivers/input/input.c                        |  660 +++++++++++++++++------
 drivers/input/joydev.c                       |  743 +++++++++++++++++---------
 drivers/input/joystick/xpad.c                |   55 ++-
 drivers/input/keyboard/Kconfig               |   40 ++
 drivers/input/keyboard/Makefile              |    5 +-
 drivers/input/keyboard/bf54x-keys.c          |  382 +++++++++++++
 drivers/input/keyboard/gpio_keys.c           |   81 +++-
 drivers/input/keyboard/jornada680_kbd.c      |  277 ++++++++++
 drivers/input/keyboard/jornada720_kbd.c      |  185 +++++++
 drivers/input/keyboard/maple_keyb.c          |  252 +++++++++
 drivers/input/keyboard/omap-keypad.c         |   22 +-
 drivers/input/mouse/alps.c                   |    2 +
 drivers/input/mouse/appletouch.c             |   15 +-
 drivers/input/mouse/lifebook.c               |   10 +-
 drivers/input/mouse/psmouse-base.c           |    5 +-
 drivers/input/mousedev.c                     |  740 ++++++++++++++++----------
 drivers/input/serio/i8042.c                  |    4 +
 drivers/input/touchscreen/Kconfig            |   21 +
 drivers/input/touchscreen/Makefile           |    1 +
 drivers/input/touchscreen/jornada720_ts.c    |  182 +++++++
 drivers/input/touchscreen/ucb1400_ts.c       |    3 +-
 drivers/input/touchscreen/usbtouchscreen.c   |   93 ++++-
 drivers/input/tsdev.c                        |  533 ------------------
 drivers/macintosh/Kconfig                    |    1 +
 drivers/macintosh/adbhid.c                   |   58 ++-
 include/asm-blackfin/mach-bf548/bf54x_keys.h |   17 +
 include/linux/gpio_keys.h                    |    1 +
 include/linux/input.h                        |  116 ++++-
 include/linux/keyboard.h                     |    4 +-
 42 files changed, 3774 insertions(+), 2174 deletions(-)
 delete mode 100644 drivers/char/ec3104_keyb.c
 create mode 100644 drivers/input/keyboard/bf54x-keys.c
 create mode 100644 drivers/input/keyboard/jornada680_kbd.c
 create mode 100644 drivers/input/keyboard/jornada720_kbd.c
 create mode 100644 drivers/input/keyboard/maple_keyb.c
 create mode 100644 drivers/input/touchscreen/jornada720_ts.c
 delete mode 100644 drivers/input/tsdev.c
 create mode 100644 include/asm-blackfin/mach-bf548/bf54x_keys.h

-- 
Dmitry

             reply	other threads:[~2007-10-13 20:14 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-10-13 20:14 Dmitry Torokhov [this message]
2007-10-14  4:50 ` [git pull] Input updates for 2.6.24-rc0 Andrey Borzenkov
2007-10-15 20:28 ` Dmitry Torokhov
2007-10-15 20:43   ` Linus Torvalds
2007-10-15 21:12     ` Dmitry Torokhov

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=200710131614.35356.dmitry.torokhov@gmail.com \
    --to=dmitry.torokhov@gmail.com \
    --cc=akpm@linux-foundation.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 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.