linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] input: mt updates for 2.6.38
@ 2010-12-08  9:02 Henrik Rydberg
  2010-12-09  8:58 ` Dmitry Torokhov
  0 siblings, 1 reply; 15+ messages in thread
From: Henrik Rydberg @ 2010-12-08  9:02 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Jiri Kosina, linux-input, linux-kernel@vger.kernel.org

Dmitry,

Please pull from

  git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git next

to receive input-mt updates for 2.6.38.

The tree contains core changes as well as dependent changes to hid drivers. You
also find the new hid-egalax driver in there, signed off by Jiri.

Thanks,
Henrik

Henrik Rydberg (13):
      input: mt: Break out slots handling
      input: mt: Collect slots initialization code
      input: mt: Add an envelope tool type
      input: mt: Move tracking and pointer emulation to input-mt
      input: mt: Add hovering distance axis
      hid: egalax: Setup input device manually
      hid: egalax: Correct for device resolution report error
      hid: egalax: Report zero as minimum pressure
      hid: egalax: Add event filtering
      hid: egalax: Convert to MT slots
      hid: egalax: Add support for Wetab
      hid: egalax: Document the new devices in Kconfig
      MAINTAINERS: Update input-mt entry

 Documentation/input/multi-touch-protocol.txt |   14 ++-
 MAINTAINERS                                  |    2 +
 drivers/hid/Kconfig                          |    3 +-
 drivers/hid/hid-3m-pct.c                     |   36 +------
 drivers/hid/hid-core.c                       |    1 +
 drivers/hid/hid-egalax.c                     |  127 +++++++++-------------
 drivers/hid/hid-ids.h                        |    1 +
 drivers/input/Makefile                       |    2 +-
 drivers/input/input-mt.c                     |  153 ++++++++++++++++++++++++++
 drivers/input/input.c                        |   48 +--------
 drivers/input/misc/uinput.c                  |    4 +-
 drivers/input/tablet/wacom_wac.c             |   26 +---
 drivers/input/tablet/wacom_wac.h             |    4 -
 drivers/input/touchscreen/wacom_w8001.c      |   25 +---
 include/linux/input-mt.h                     |   56 ++++++++++
 include/linux/input.h                        |   22 +---
 16 files changed, 306 insertions(+), 218 deletions(-)
 create mode 100644 drivers/input/input-mt.c
 create mode 100644 include/linux/input-mt.h

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [GIT PULL] input: mt updates for 2.6.38
@ 2010-12-13  8:29 Henrik Rydberg
  2010-12-13  9:13 ` Dmitry Torokhov
  0 siblings, 1 reply; 15+ messages in thread
From: Henrik Rydberg @ 2010-12-13  8:29 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Jiri Kosina, linux-input, linux-kernel@vger.kernel.org

Dmitry,

Please pull from

  git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git next

to receive input-mt updates for 2.6.38.

The changes have all been discussed on the list, and are mostly janitory in nature.

Thanks,
Henrik

Dmitry Torokhov (2):
      Input: include MT library as source for kerneldoc
      Input: document new trkid field in struct input_dev

Henrik Rydberg (3):
      input: mt: Move input MT header inside input directory
      input: mt: Interface and MT_TOOL documentation updates
      input: mt: Support separate contact and finger count reports

 Documentation/DocBook/device-drivers.tmpl    |    4 ++
 Documentation/input/multi-touch-protocol.txt |   39 ++++++++++++++++++--------
 drivers/hid/hid-3m-pct.c                     |    4 +-
 drivers/hid/hid-egalax.c                     |    4 +-
 drivers/input/input-mt.c                     |   35 +++++++++++++++++------
 drivers/input/input.c                        |    2 +-
 drivers/input/misc/uinput.c                  |    2 +-
 drivers/input/tablet/wacom_wac.c             |    4 +-
 drivers/input/touchscreen/wacom_w8001.c      |    2 +-
 include/linux/input.h                        |    7 ++--
 include/linux/{input-mt.h => input/mt.h}     |    3 +-
 11 files changed, 72 insertions(+), 34 deletions(-)
 rename include/linux/{input-mt.h => input/mt.h} (89%)

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [GIT PULL] input: mt updates for 2.6.38
@ 2010-12-16 11:37 Henrik Rydberg
  2010-12-17 19:34 ` Dmitry Torokhov
  0 siblings, 1 reply; 15+ messages in thread
From: Henrik Rydberg @ 2010-12-16 11:37 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Jiri Kosina, linux-input, linux-kernel@vger.kernel.org

Dmitry,

Please pull from

  git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git next

to re-receive input-mt updates for 2.6.38.

As a one-time measure, the tree has been rewound all the way to 2.6.37-rc1, to
keep our trees at a common checkpoint. Hereafter, the branch will be kept stable
and synchronized at a common checkpoint.

Content-wise, the filename change has been folded into the first commit. The
finger-count report and the trkid documentation have been folded into the commit
where they are introduced. Furthermore, MT_TOOL_ENVELOPE has been dropped
completely, and is going to be replaced by an input device quirk. The overall
documentation changes have been held back for another respin. Lastly, another
device patch has been added to hid-egalax.

Thanks,
Henrik

Dmitry Torokhov (1):
      Input: include MT library as source for kerneldoc

Henrik Rydberg (12):
      input: mt: Break out slots handling
      input: mt: Collect slots initialization code
      input: mt: Move tracking and pointer emulation to input-mt
      input: mt: Add hovering distance axis
      hid: egalax: Setup input device manually
      hid: egalax: Correct for device resolution report error
      hid: egalax: Report zero as minimum pressure
      hid: egalax: Add event filtering
      hid: egalax: Convert to MT slots
      hid: egalax: Add support for Wetab
      hid: egalax: Document the new devices in Kconfig
      MAINTAINERS: Update input-mt entry

Richard Nauber (1):
      hid: egalax: Add support for Samsung NB30 netbook

 Documentation/DocBook/device-drivers.tmpl    |    4 +
 Documentation/input/multi-touch-protocol.txt |    9 ++-
 MAINTAINERS                                  |    2 +
 drivers/hid/Kconfig                          |    3 +-
 drivers/hid/hid-3m-pct.c                     |   36 +-----
 drivers/hid/hid-core.c                       |    2 +
 drivers/hid/hid-egalax.c                     |  129 ++++++++-----------
 drivers/hid/hid-ids.h                        |    2 +
 drivers/input/Makefile                       |    2 +-
 drivers/input/input-mt.c                     |  170 ++++++++++++++++++++++++++
 drivers/input/input.c                        |   48 +-------
 drivers/input/misc/uinput.c                  |    4 +-
 drivers/input/tablet/wacom_wac.c             |   26 +---
 drivers/input/tablet/wacom_wac.h             |    4 -
 drivers/input/touchscreen/wacom_w8001.c      |   25 +---
 include/linux/input.h                        |   22 +---
 include/linux/input/mt.h                     |   57 +++++++++
 17 files changed, 329 insertions(+), 216 deletions(-)
 create mode 100644 drivers/input/input-mt.c
 create mode 100644 include/linux/input/mt.h

^ permalink raw reply	[flat|nested] 15+ messages in thread
* [GIT PULL] input: mt updates for 2.6.38
@ 2010-12-23 15:20 Henrik Rydberg
  2010-12-28  1:42 ` Dmitry Torokhov
  0 siblings, 1 reply; 15+ messages in thread
From: Henrik Rydberg @ 2010-12-23 15:20 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: Jiri Kosina, linux-input, linux-kernel@vger.kernel.org

Dmitry,

Please pull from

  git://git.kernel.org/pub/scm/linux/kernel/git/rydberg/input-mt.git next

to receive input-mt updates for 2.6.38.

The device properties are in there, the synaptics patches are in
there, and another wetab patch is in there.

Merry Christmas,
Henrik

Andy Ross (1):
      hid: egalax: Add support for Wetab (726b)

Henrik Rydberg (6):
      Input: introduce device properties
      Input: fix double equality sign in uevent
      input: mt: Document interface updates
      Input: synaptics - report clickpad property
      Input: synaptics - add multi-finger and semi-mt support
      Input: synaptics - ignore bogus mt packet

 Documentation/input/multi-touch-protocol.txt |   44 +++++++-----
 drivers/hid/hid-core.c                       |    1 +
 drivers/hid/hid-egalax.c                     |    2 +
 drivers/hid/hid-ids.h                        |    1 +
 drivers/input/evdev.c                        |    4 +
 drivers/input/input.c                        |   21 ++++++-
 drivers/input/misc/uinput.c                  |    4 +
 drivers/input/mouse/synaptics.c              |   95 ++++++++++++++++++++++++--
 drivers/input/mouse/synaptics.h              |    3 +
 include/linux/input.h                        |   16 ++++
 include/linux/uinput.h                       |    1 +
 11 files changed, 168 insertions(+), 24 deletions(-)

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

end of thread, other threads:[~2010-12-28  1:42 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-08  9:02 [GIT PULL] input: mt updates for 2.6.38 Henrik Rydberg
2010-12-09  8:58 ` Dmitry Torokhov
2010-12-09  9:08   ` Dmitry Torokhov
2010-12-09 18:27     ` Henrik Rydberg
2010-12-09 18:48       ` Dmitry Torokhov
2010-12-09 19:11         ` Henrik Rydberg
2010-12-09 18:23   ` Henrik Rydberg
2010-12-09 18:49     ` Dmitry Torokhov
2010-12-09 19:10       ` Henrik Rydberg
  -- strict thread matches above, loose matches on Subject: below --
2010-12-13  8:29 Henrik Rydberg
2010-12-13  9:13 ` Dmitry Torokhov
2010-12-16 11:37 Henrik Rydberg
2010-12-17 19:34 ` Dmitry Torokhov
2010-12-23 15:20 Henrik Rydberg
2010-12-28  1:42 ` Dmitry Torokhov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).