public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [git pull] More input updates for post-2.6.21
@ 2007-05-08  5:46 Dmitry Torokhov
  2007-05-08  5:49 ` Greg KH
  0 siblings, 1 reply; 2+ messages in thread
From: Dmitry Torokhov @ 2007-05-08  5:46 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Andrew Morton, Greg KH, linux-kernel

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

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

* Re: [git pull] More input updates for post-2.6.21
  2007-05-08  5:46 [git pull] More input updates for post-2.6.21 Dmitry Torokhov
@ 2007-05-08  5:49 ` Greg KH
  0 siblings, 0 replies; 2+ messages in thread
From: Greg KH @ 2007-05-08  5:49 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Linus Torvalds, Andrew Morton, linux-kernel

On Tue, May 08, 2007 at 01:46:14AM -0400, Dmitry Torokhov wrote:
> 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.

Yes, I have no objection to this move at all, thanks Dmitry for doing
it.

greg k-h

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

end of thread, other threads:[~2007-05-08  5:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-08  5:46 [git pull] More input updates for post-2.6.21 Dmitry Torokhov
2007-05-08  5:49 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox