All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Torokhov <dtor@insightbb.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	Greg KH <gregkh@suse.de>,
	linux-kernel@vger.kernel.org
Subject: [git pull] More input updates for post-2.6.21
Date: Tue, 8 May 2007 01:46:14 -0400	[thread overview]
Message-ID: <200705080146.14911.dtor@insightbb.com> (raw)

Hi Linus,

Please consider pulling from:

        git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git

or
        master.kernel.org:/pub/scm/linux/kernel/git/dtor/input.git

to receive more updates for input subsystem. You will get yet another
fix for i8042 AUX detection, bunch of sparse warnings fixed and
USB input devices moved into drivers/input to keep all input devices
together in menuconfig and friends.

Dmitry Torokhov (12):
      Input: force feedback - make sure effect is present before playing
      Input: drivers/joystick - fix various sparse warnings
      Input: evdev - fix some sparse warnings (signedness, shadowing)
      Input: drivers/usb/input - fix sparse warnings (signedness)
      Input: synaptics - don't complain about failed resets
      Input: drivers/usb/input - usb_buffer_free() cleanup
      Input: aaed2000_kbd - convert to use polldev library
      Input: move USB tablets under drivers/input/tablet
      Input: move USB touchscreens under drivers/input/touchscreen
      Input: move USB gamepads under drivers/input/joystick
      Input: move USB mice under drivers/input/mouse
      Input: move USB miscellaneous devices under drivers/input/misc

Mike Frysinger (1):
      Input: pull input.h into uinpit.h

Roland Scheidegger (1):
      Input: i8042 - fix AUX port detection with some chips

 drivers/input/Kconfig                              |    2 +
 drivers/input/Makefile                             |    1 +
 drivers/input/evdev.c                              |    6 +-
 drivers/input/ff-core.c                            |    3 +-
 drivers/input/joystick/Kconfig                     |   18 ++-
 drivers/input/joystick/Makefile                    |    1 +
 drivers/input/joystick/analog.c                    |    2 +-
 drivers/input/joystick/db9.c                       |   18 +-
 drivers/input/joystick/gamecon.c                   |   17 +-
 drivers/input/joystick/iforce/iforce.h             |    2 +-
 drivers/input/joystick/turbografx.c                |   18 +-
 drivers/{usb/input => input/joystick}/xpad.c       |    0 
 drivers/input/keyboard/Kconfig                     |    1 +
 drivers/input/keyboard/aaed2000_kbd.c              |   62 ++----
 drivers/input/misc/Kconfig                         |   88 +++++++-
 drivers/input/misc/Makefile                        |    9 +-
 drivers/{usb/input => input/misc}/ati_remote.c     |    0 
 drivers/{usb/input => input/misc}/ati_remote2.c    |    4 +-
 drivers/{usb/input => input/misc}/keyspan_remote.c |    0 
 .../{usb/input => input/misc}/map_to_7segment.h    |    0 
 drivers/{usb/input => input/misc}/powermate.c      |   10 +-
 drivers/input/misc/uinput.c                        |    1 -
 drivers/{usb/input => input/misc}/yealink.c        |   25 +--
 drivers/{usb/input => input/misc}/yealink.h        |    0 
 drivers/input/mouse/Kconfig                        |   38 +++-
 drivers/input/mouse/Makefile                       |    1 +
 drivers/{usb/input => input/mouse}/appletouch.c    |    0 
 drivers/input/mouse/synaptics.c                    |    2 +-
 drivers/input/serio/i8042.c                        |   35 +++-
 drivers/input/tablet/Kconfig                       |   74 +++++++
 drivers/input/tablet/Makefile                      |   12 +
 drivers/{usb/input => input/tablet}/acecad.c       |    2 +-
 drivers/{usb/input => input/tablet}/aiptek.c       |    0 
 drivers/{usb/input => input/tablet}/gtco.c         |    0 
 drivers/{usb/input => input/tablet}/kbtab.c        |    2 +-
 drivers/{usb/input => input/tablet}/wacom.h        |    2 +-
 drivers/{usb/input => input/tablet}/wacom_sys.c    |    2 +-
 drivers/{usb/input => input/tablet}/wacom_wac.c    |    2 +-
 drivers/{usb/input => input/tablet}/wacom_wac.h    |    4 +-
 drivers/input/touchscreen/Kconfig                  |   60 +++++-
 drivers/input/touchscreen/Makefile                 |   17 +-
 .../input => input/touchscreen}/usbtouchscreen.c   |    5 +-
 drivers/usb/Kconfig                                |    2 -
 drivers/usb/Makefile                               |    9 -
 drivers/usb/input/Kconfig                          |  225 --------------------
 drivers/usb/input/Makefile                         |   24 --
 include/linux/uinput.h                             |    2 +
 47 files changed, 404 insertions(+), 404 deletions(-)
 rename drivers/{usb/input => input/joystick}/xpad.c (100%)
 rename drivers/{usb/input => input/misc}/ati_remote.c (100%)
 rename drivers/{usb/input => input/misc}/ati_remote2.c (99%)
 rename drivers/{usb/input => input/misc}/keyspan_remote.c (100%)
 rename drivers/{usb/input => input/misc}/map_to_7segment.h (100%)
 rename drivers/{usb/input => input/misc}/powermate.c (99%)
 rename drivers/{usb/input => input/misc}/yealink.c (98%)
 rename drivers/{usb/input => input/misc}/yealink.h (100%)
 rename drivers/{usb/input => input/mouse}/appletouch.c (100%)
 create mode 100644 drivers/input/tablet/Kconfig
 create mode 100644 drivers/input/tablet/Makefile
 rename drivers/{usb/input => input/tablet}/acecad.c (100%)
 rename drivers/{usb/input => input/tablet}/aiptek.c (100%)
 rename drivers/{usb/input => input/tablet}/gtco.c (100%)
 rename drivers/{usb/input => input/tablet}/kbtab.c (100%)
 rename drivers/{usb/input => input/tablet}/wacom.h (99%)
 rename drivers/{usb/input => input/tablet}/wacom_sys.c (100%)
 rename drivers/{usb/input => input/tablet}/wacom_wac.c (100%)
 rename drivers/{usb/input => input/tablet}/wacom_wac.h (93%)
 rename drivers/{usb/input => input/touchscreen}/usbtouchscreen.c (99%)
 delete mode 100644 drivers/usb/input/Kconfig
 delete mode 100644 drivers/usb/input/Makefile

-- 
Dmitry

             reply	other threads:[~2007-05-08  5:46 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-08  5:46 Dmitry Torokhov [this message]
2007-05-08  5:49 ` [git pull] More input updates for post-2.6.21 Greg KH

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=200705080146.14911.dtor@insightbb.com \
    --to=dtor@insightbb.com \
    --cc=akpm@linux-foundation.org \
    --cc=gregkh@suse.de \
    --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.