All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] input: mouse: trackpoint: assume 3 buttons when buttons detection fails
@ 2017-05-29 11:45 Oscar Campos
  2017-05-31  4:42 ` Peter Hutterer
  0 siblings, 1 reply; 3+ messages in thread
From: Oscar Campos @ 2017-05-29 11:45 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: linux-input

Trackpoint buttons detection fails on ThinkPad 570 and 470 series,
this makes the middle button of the trackpoint to not being recogized.
As I don't believe there is any trackpoint with less than 3 buttons this
patch just assumes three buttons when the extended button information
read fails.

Cc: linux-input@vger.kernel.org
Signed-off-by: Oscar Campos <oscar.campos@member.fsf.org>
---
 drivers/input/mouse/trackpoint.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/input/mouse/trackpoint.c b/drivers/input/mouse/trackpoint.c
index 922ea02edcc3..20b5b21c1bba 100644
--- a/drivers/input/mouse/trackpoint.c
+++ b/drivers/input/mouse/trackpoint.c
@@ -380,8 +380,8 @@ int trackpoint_detect(struct psmouse *psmouse, bool set_properties)
 		return 0;

 	if (trackpoint_read(ps2dev, TP_EXT_BTN, &button_info)) {
-		psmouse_warn(psmouse, "failed to get extended button data\n");
-		button_info = 0;
+		psmouse_warn(psmouse, "failed to get extended button data, assuming 3 buttons\n");
+		button_info = 0x33;
 	}

 	psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL);
--
2.13.0


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

* Re: [PATCH] input: mouse: trackpoint: assume 3 buttons when buttons detection fails
  2017-05-29 11:45 [PATCH] input: mouse: trackpoint: assume 3 buttons when buttons detection fails Oscar Campos
@ 2017-05-31  4:42 ` Peter Hutterer
  2017-07-19  0:25   ` Dmitry Torokhov
  0 siblings, 1 reply; 3+ messages in thread
From: Peter Hutterer @ 2017-05-31  4:42 UTC (permalink / raw)
  To: Oscar Campos; +Cc: Dmitry Torokhov, linux-input

On Mon, May 29, 2017 at 12:45:01PM +0100, Oscar Campos wrote:
> Trackpoint buttons detection fails on ThinkPad 570 and 470 series,
> this makes the middle button of the trackpoint to not being recogized.
> As I don't believe there is any trackpoint with less than 3 buttons this
> patch just assumes three buttons when the extended button information
> read fails.

I vaguely remember there may have been one at some point, but I can't
remember which model it was in (not a Lenovo anyway). This approach seems
sensible, but I worry about it papering over potential bugs (missing
support).

still, Acked-by: Peter Hutterer <peter.hutterer@who-t.net>

Cheers,
   Peter

> 
> Cc: linux-input@vger.kernel.org
> Signed-off-by: Oscar Campos <oscar.campos@member.fsf.org>
> ---
>  drivers/input/mouse/trackpoint.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/input/mouse/trackpoint.c b/drivers/input/mouse/trackpoint.c
> index 922ea02edcc3..20b5b21c1bba 100644
> --- a/drivers/input/mouse/trackpoint.c
> +++ b/drivers/input/mouse/trackpoint.c
> @@ -380,8 +380,8 @@ int trackpoint_detect(struct psmouse *psmouse, bool set_properties)
>  		return 0;
> 
>  	if (trackpoint_read(ps2dev, TP_EXT_BTN, &button_info)) {
> -		psmouse_warn(psmouse, "failed to get extended button data\n");
> -		button_info = 0;
> +		psmouse_warn(psmouse, "failed to get extended button data, assuming 3 buttons\n");
> +		button_info = 0x33;
>  	}
> 
>  	psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL);
> --
> 2.13.0
> 
> --
> 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: mouse: trackpoint: assume 3 buttons when buttons detection fails
  2017-05-31  4:42 ` Peter Hutterer
@ 2017-07-19  0:25   ` Dmitry Torokhov
  0 siblings, 0 replies; 3+ messages in thread
From: Dmitry Torokhov @ 2017-07-19  0:25 UTC (permalink / raw)
  To: Peter Hutterer; +Cc: Oscar Campos, linux-input

On Wed, May 31, 2017 at 02:42:04PM +1000, Peter Hutterer wrote:
> On Mon, May 29, 2017 at 12:45:01PM +0100, Oscar Campos wrote:
> > Trackpoint buttons detection fails on ThinkPad 570 and 470 series,
> > this makes the middle button of the trackpoint to not being recogized.
> > As I don't believe there is any trackpoint with less than 3 buttons this
> > patch just assumes three buttons when the extended button information
> > read fails.
> 
> I vaguely remember there may have been one at some point, but I can't
> remember which model it was in (not a Lenovo anyway). This approach seems
> sensible, but I worry about it papering over potential bugs (missing
> support).
> 
> still, Acked-by: Peter Hutterer <peter.hutterer@who-t.net>

Applied, thank you.

> 
> Cheers,
>    Peter
> 
> > 
> > Cc: linux-input@vger.kernel.org
> > Signed-off-by: Oscar Campos <oscar.campos@member.fsf.org>
> > ---
> >  drivers/input/mouse/trackpoint.c | 4 ++--
> >  1 file changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/drivers/input/mouse/trackpoint.c b/drivers/input/mouse/trackpoint.c
> > index 922ea02edcc3..20b5b21c1bba 100644
> > --- a/drivers/input/mouse/trackpoint.c
> > +++ b/drivers/input/mouse/trackpoint.c
> > @@ -380,8 +380,8 @@ int trackpoint_detect(struct psmouse *psmouse, bool set_properties)
> >  		return 0;
> > 
> >  	if (trackpoint_read(ps2dev, TP_EXT_BTN, &button_info)) {
> > -		psmouse_warn(psmouse, "failed to get extended button data\n");
> > -		button_info = 0;
> > +		psmouse_warn(psmouse, "failed to get extended button data, assuming 3 buttons\n");
> > +		button_info = 0x33;
> >  	}
> > 
> >  	psmouse->private = kzalloc(sizeof(struct trackpoint_data), GFP_KERNEL);
> > --
> > 2.13.0
> > 
> > --
> > 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:[~2017-07-19  0:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-29 11:45 [PATCH] input: mouse: trackpoint: assume 3 buttons when buttons detection fails Oscar Campos
2017-05-31  4:42 ` Peter Hutterer
2017-07-19  0:25   ` Dmitry Torokhov

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.