linux-input.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] Input: wacom_w8001 - W8001_MAX_LENGTH should be 13
@ 2016-05-24  3:03 Ping Cheng
  2016-05-24  5:01 ` Peter Hutterer
  0 siblings, 1 reply; 3+ messages in thread
From: Ping Cheng @ 2016-05-24  3:03 UTC (permalink / raw)
  To: linux-input, dmitry.torokhov
  Cc: peter.hutterer, benjamin.tissoires, Ping Cheng

Somehow the patch that added two-finger touch support forgot to update
W8001_MAX_LENGTH from 11 to 13.

Signed-off-by: Ping Cheng <pingc@wacom.com>
---
 drivers/input/touchscreen/wacom_w8001.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/input/touchscreen/wacom_w8001.c b/drivers/input/touchscreen/wacom_w8001.c
index bab3c6a..b1b4127 100644
--- a/drivers/input/touchscreen/wacom_w8001.c
+++ b/drivers/input/touchscreen/wacom_w8001.c
@@ -27,7 +27,7 @@ MODULE_AUTHOR("Jaya Kumar <jayakumar.lkml@gmail.com>");
 MODULE_DESCRIPTION(DRIVER_DESC);
 MODULE_LICENSE("GPL");
 
-#define W8001_MAX_LENGTH	11
+#define W8001_MAX_LENGTH	13
 #define W8001_LEAD_MASK		0x80
 #define W8001_LEAD_BYTE		0x80
 #define W8001_TAB_MASK		0x40
-- 
1.9.1


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

* Re: [PATCH 1/2] Input: wacom_w8001 - W8001_MAX_LENGTH should be 13
  2016-05-24  3:03 [PATCH 1/2] Input: wacom_w8001 - W8001_MAX_LENGTH should be 13 Ping Cheng
@ 2016-05-24  5:01 ` Peter Hutterer
  2016-06-23 18:00   ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Hutterer @ 2016-05-24  5:01 UTC (permalink / raw)
  To: Ping Cheng; +Cc: linux-input, dmitry.torokhov, benjamin.tissoires, Ping Cheng

On Mon, May 23, 2016 at 08:03:40PM -0700, Ping Cheng wrote:
> Somehow the patch that added two-finger touch support forgot to update
> W8001_MAX_LENGTH from 11 to 13.
> 
> Signed-off-by: Ping Cheng <pingc@wacom.com>

whoops, I think that was me.

Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>

Cheers,
   Peter

> ---
>  drivers/input/touchscreen/wacom_w8001.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/input/touchscreen/wacom_w8001.c b/drivers/input/touchscreen/wacom_w8001.c
> index bab3c6a..b1b4127 100644
> --- a/drivers/input/touchscreen/wacom_w8001.c
> +++ b/drivers/input/touchscreen/wacom_w8001.c
> @@ -27,7 +27,7 @@ MODULE_AUTHOR("Jaya Kumar <jayakumar.lkml@gmail.com>");
>  MODULE_DESCRIPTION(DRIVER_DESC);
>  MODULE_LICENSE("GPL");
>  
> -#define W8001_MAX_LENGTH	11
> +#define W8001_MAX_LENGTH	13
>  #define W8001_LEAD_MASK		0x80
>  #define W8001_LEAD_BYTE		0x80
>  #define W8001_TAB_MASK		0x40
> -- 
> 1.9.1
> 

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

* Re: [PATCH 1/2] Input: wacom_w8001 - W8001_MAX_LENGTH should be 13
  2016-05-24  5:01 ` Peter Hutterer
@ 2016-06-23 18:00   ` Dmitry Torokhov
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2016-06-23 18:00 UTC (permalink / raw)
  To: Peter Hutterer; +Cc: Ping Cheng, linux-input, benjamin.tissoires, Ping Cheng

On Tue, May 24, 2016 at 03:01:45PM +1000, Peter Hutterer wrote:
> On Mon, May 23, 2016 at 08:03:40PM -0700, Ping Cheng wrote:
> > Somehow the patch that added two-finger touch support forgot to update
> > W8001_MAX_LENGTH from 11 to 13.
> > 
> > Signed-off-by: Ping Cheng <pingc@wacom.com>
> 
> whoops, I think that was me.
> 
> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>

Applied, thank you.

> 
> Cheers,
>    Peter
> 
> > ---
> >  drivers/input/touchscreen/wacom_w8001.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/drivers/input/touchscreen/wacom_w8001.c b/drivers/input/touchscreen/wacom_w8001.c
> > index bab3c6a..b1b4127 100644
> > --- a/drivers/input/touchscreen/wacom_w8001.c
> > +++ b/drivers/input/touchscreen/wacom_w8001.c
> > @@ -27,7 +27,7 @@ MODULE_AUTHOR("Jaya Kumar <jayakumar.lkml@gmail.com>");
> >  MODULE_DESCRIPTION(DRIVER_DESC);
> >  MODULE_LICENSE("GPL");
> >  
> > -#define W8001_MAX_LENGTH	11
> > +#define W8001_MAX_LENGTH	13
> >  #define W8001_LEAD_MASK		0x80
> >  #define W8001_LEAD_BYTE		0x80
> >  #define W8001_TAB_MASK		0x40
> > -- 
> > 1.9.1
> > 

-- 
Dmitry

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

end of thread, other threads:[~2016-06-23 18:00 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-24  3:03 [PATCH 1/2] Input: wacom_w8001 - W8001_MAX_LENGTH should be 13 Ping Cheng
2016-05-24  5:01 ` Peter Hutterer
2016-06-23 18:00   ` 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).