All of lore.kernel.org
 help / color / mirror / Atom feed
* [git pull] Input updates for 2.6.24-rc0
@ 2007-10-13 20:14 Dmitry Torokhov
  2007-10-14  4:50 ` Andrey Borzenkov
  2007-10-15 20:28 ` Dmitry Torokhov
  0 siblings, 2 replies; 5+ messages in thread
From: Dmitry Torokhov @ 2007-10-13 20:14 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, LKML

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

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

* Re: [git pull] Input updates for 2.6.24-rc0
  2007-10-13 20:14 [git pull] Input updates for 2.6.24-rc0 Dmitry Torokhov
@ 2007-10-14  4:50 ` Andrey Borzenkov
  2007-10-15 20:28 ` Dmitry Torokhov
  1 sibling, 0 replies; 5+ messages in thread
From: Andrey Borzenkov @ 2007-10-14  4:50 UTC (permalink / raw)
  To: linux-kernel

Dmitry Torokhov wrote:

[...]
>       Input: tsdev - implement proper locking
[...]
>  delete mode 100644 drivers/input/tsdev.c

This fixes all locking issues indeed :)


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

* Re: [git pull] Input updates for 2.6.24-rc0
  2007-10-13 20:14 [git pull] Input updates for 2.6.24-rc0 Dmitry Torokhov
  2007-10-14  4:50 ` Andrey Borzenkov
@ 2007-10-15 20:28 ` Dmitry Torokhov
  2007-10-15 20:43   ` Linus Torvalds
  1 sibling, 1 reply; 5+ messages in thread
From: Dmitry Torokhov @ 2007-10-15 20:28 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, LKML

On 10/13/07, Dmitry Torokhov <dmitry.torokhov@gmail.com> wrote:
> 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.
>

*ping*

-- 
Dmitry

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

* Re: [git pull] Input updates for 2.6.24-rc0
  2007-10-15 20:28 ` Dmitry Torokhov
@ 2007-10-15 20:43   ` Linus Torvalds
  2007-10-15 21:12     ` Dmitry Torokhov
  0 siblings, 1 reply; 5+ messages in thread
From: Linus Torvalds @ 2007-10-15 20:43 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Andrew Morton, LKML



On Mon, 15 Oct 2007, Dmitry Torokhov wrote:
> 
> *ping*

Thanks, pulled and pushed out.

Can you check that applesmc looks sane after the merge conflict? The 
conflict itself looked pretty trivial, and it compiles for me, but I'd 
still like somebody who knows those things to double-check..

		Linus

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

* Re: [git pull] Input updates for 2.6.24-rc0
  2007-10-15 20:43   ` Linus Torvalds
@ 2007-10-15 21:12     ` Dmitry Torokhov
  0 siblings, 0 replies; 5+ messages in thread
From: Dmitry Torokhov @ 2007-10-15 21:12 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, LKML

On 10/15/07, Linus Torvalds <torvalds@linux-foundation.org> wrote:
>
>
> On Mon, 15 Oct 2007, Dmitry Torokhov wrote:
> >
> > *ping*
>
> Thanks, pulled and pushed out.
>
> Can you check that applesmc looks sane after the merge conflict? The
> conflict itself looked pretty trivial, and it compiles for me, but I'd
> still like somebody who knows those things to double-check..
>

Yep, it looks good from here.

Thanks.

-- 
Dmitry

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

end of thread, other threads:[~2007-10-15 21:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-10-13 20:14 [git pull] Input updates for 2.6.24-rc0 Dmitry Torokhov
2007-10-14  4:50 ` Andrey Borzenkov
2007-10-15 20:28 ` Dmitry Torokhov
2007-10-15 20:43   ` Linus Torvalds
2007-10-15 21:12     ` 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.