linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Input: Fix typo in MT documentation
@ 2015-09-17 15:01 Daniel Martin
  2015-09-17 20:31 ` Benjamin Tissoires
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Martin @ 2015-09-17 15:01 UTC (permalink / raw)
  To: linux-input; +Cc: Daniel Martin, Daniel Martin

Section "Event Computation" had this:
    ...
    ABS_MT_TOOL_X := C_X
    ABS_MT_TOOL_X := C_Y

Replace the second ABS_MT_TOOL_X with ABS_MT_TOOL_Y.

Signed-off-by: Daniel Martin <consume.noise@gmail.com>
---
 Documentation/input/multi-touch-protocol.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/input/multi-touch-protocol.txt b/Documentation/input/multi-touch-protocol.txt
index b85d000..c51f114 100644
--- a/Documentation/input/multi-touch-protocol.txt
+++ b/Documentation/input/multi-touch-protocol.txt
@@ -361,7 +361,7 @@ For win8 devices with both T and C coordinates, the position mapping is
    ABS_MT_POSITION_X := T_X
    ABS_MT_POSITION_Y := T_Y
    ABS_MT_TOOL_X := C_X
-   ABS_MT_TOOL_X := C_Y
+   ABS_MT_TOOL_Y := C_Y
 
 Unfortunately, there is not enough information to specify both the touching
 ellipse and the tool ellipse, so one has to resort to approximations.  One
-- 
2.1.4


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

* Re: [PATCH] Input: Fix typo in MT documentation
  2015-09-17 15:01 [PATCH] Input: Fix typo in MT documentation Daniel Martin
@ 2015-09-17 20:31 ` Benjamin Tissoires
  2015-09-19 18:28   ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Benjamin Tissoires @ 2015-09-17 20:31 UTC (permalink / raw)
  To: Daniel Martin, Dmitry Torokhov; +Cc: linux-input, Daniel Martin

On Thu, Sep 17, 2015 at 11:01 AM, Daniel Martin
<daniel.martin@secunet.com> wrote:
> Section "Event Computation" had this:
>     ...
>     ABS_MT_TOOL_X := C_X
>     ABS_MT_TOOL_X := C_Y
>
> Replace the second ABS_MT_TOOL_X with ABS_MT_TOOL_Y.
>
> Signed-off-by: Daniel Martin <consume.noise@gmail.com>
> ---

Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>

>  Documentation/input/multi-touch-protocol.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/Documentation/input/multi-touch-protocol.txt b/Documentation/input/multi-touch-protocol.txt
> index b85d000..c51f114 100644
> --- a/Documentation/input/multi-touch-protocol.txt
> +++ b/Documentation/input/multi-touch-protocol.txt
> @@ -361,7 +361,7 @@ For win8 devices with both T and C coordinates, the position mapping is
>     ABS_MT_POSITION_X := T_X
>     ABS_MT_POSITION_Y := T_Y
>     ABS_MT_TOOL_X := C_X
> -   ABS_MT_TOOL_X := C_Y
> +   ABS_MT_TOOL_Y := C_Y
>
>  Unfortunately, there is not enough information to specify both the touching
>  ellipse and the tool ellipse, so one has to resort to approximations.  One
> --
> 2.1.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-input" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* Re: [PATCH] Input: Fix typo in MT documentation
  2015-09-17 20:31 ` Benjamin Tissoires
@ 2015-09-19 18:28   ` Dmitry Torokhov
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2015-09-19 18:28 UTC (permalink / raw)
  To: Benjamin Tissoires; +Cc: Daniel Martin, linux-input, Daniel Martin

On Thu, Sep 17, 2015 at 04:31:36PM -0400, Benjamin Tissoires wrote:
> On Thu, Sep 17, 2015 at 11:01 AM, Daniel Martin
> <daniel.martin@secunet.com> wrote:
> > Section "Event Computation" had this:
> >     ...
> >     ABS_MT_TOOL_X := C_X
> >     ABS_MT_TOOL_X := C_Y
> >
> > Replace the second ABS_MT_TOOL_X with ABS_MT_TOOL_Y.
> >
> > Signed-off-by: Daniel Martin <consume.noise@gmail.com>
> > ---
> 
> Acked-by: Benjamin Tissoires <benjamin.tissoires@redhat.com>

Applied, thank you.

> 
> >  Documentation/input/multi-touch-protocol.txt | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/Documentation/input/multi-touch-protocol.txt b/Documentation/input/multi-touch-protocol.txt
> > index b85d000..c51f114 100644
> > --- a/Documentation/input/multi-touch-protocol.txt
> > +++ b/Documentation/input/multi-touch-protocol.txt
> > @@ -361,7 +361,7 @@ For win8 devices with both T and C coordinates, the position mapping is
> >     ABS_MT_POSITION_X := T_X
> >     ABS_MT_POSITION_Y := T_Y
> >     ABS_MT_TOOL_X := C_X
> > -   ABS_MT_TOOL_X := C_Y
> > +   ABS_MT_TOOL_Y := C_Y
> >
> >  Unfortunately, there is not enough information to specify both the touching
> >  ellipse and the tool ellipse, so one has to resort to approximations.  One
> > --
> > 2.1.4
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-input" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
Dmitry

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

end of thread, other threads:[~2015-09-19 18:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-17 15:01 [PATCH] Input: Fix typo in MT documentation Daniel Martin
2015-09-17 20:31 ` Benjamin Tissoires
2015-09-19 18:28   ` 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).