* [PATCH v2] Input: i8042 - add mux quirk for HP EliteBook
@ 2014-10-28 22:27 Luis Henriques
2014-10-28 23:08 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Luis Henriques @ 2014-10-28 22:27 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, linux-kernel
This laptop requires active multiplexing to be enabled in order to be able
to separate the PS/2 mouse and the touchpad.
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
---
drivers/input/serio/i8042-x86ia64io.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h
index a0bcbb64d06d..2bd486e83b43 100644
--- a/drivers/input/serio/i8042-x86ia64io.h
+++ b/drivers/input/serio/i8042-x86ia64io.h
@@ -220,6 +220,13 @@ static const struct dmi_system_id __initconst i8042_dmi_mux_table[] = {
DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
},
},
+ {
+ /* HP EliteBook */
+ .matches = {
+ DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
+ DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook"),
+ },
+ },
{ }
};
--
2.1.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] Input: i8042 - add mux quirk for HP EliteBook
2014-10-28 22:27 [PATCH v2] Input: i8042 - add mux quirk for HP EliteBook Luis Henriques
@ 2014-10-28 23:08 ` Dmitry Torokhov
2014-11-01 2:57 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2014-10-28 23:08 UTC (permalink / raw)
To: Luis Henriques; +Cc: linux-input, linux-kernel
On Tue, Oct 28, 2014 at 10:27:12PM +0000, Luis Henriques wrote:
> This laptop requires active multiplexing to be enabled in order to be able
> to separate the PS/2 mouse and the touchpad.
>
> Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
Applied, thank you.
> ---
> drivers/input/serio/i8042-x86ia64io.h | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/drivers/input/serio/i8042-x86ia64io.h b/drivers/input/serio/i8042-x86ia64io.h
> index a0bcbb64d06d..2bd486e83b43 100644
> --- a/drivers/input/serio/i8042-x86ia64io.h
> +++ b/drivers/input/serio/i8042-x86ia64io.h
> @@ -220,6 +220,13 @@ static const struct dmi_system_id __initconst i8042_dmi_mux_table[] = {
> DMI_MATCH(DMI_PRODUCT_NAME, "CF-18"),
> },
> },
> + {
> + /* HP EliteBook */
> + .matches = {
> + DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
> + DMI_MATCH(DMI_PRODUCT_NAME, "HP EliteBook"),
> + },
> + },
> { }
> };
>
> --
> 2.1.0
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] Input: i8042 - add mux quirk for HP EliteBook
2014-10-28 23:08 ` Dmitry Torokhov
@ 2014-11-01 2:57 ` Dmitry Torokhov
2014-11-02 15:42 ` Luis Henriques
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2014-11-01 2:57 UTC (permalink / raw)
To: Luis Henriques; +Cc: linux-input, linux-kernel
On Tue, Oct 28, 2014 at 04:08:41PM -0700, Dmitry Torokhov wrote:
> On Tue, Oct 28, 2014 at 10:27:12PM +0000, Luis Henriques wrote:
> > This laptop requires active multiplexing to be enabled in order to be able
> > to separate the PS/2 mouse and the touchpad.
> >
> > Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
>
> Applied, thank you.
Actually I am reverting the nomux patch, so unapplied ;)
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] Input: i8042 - add mux quirk for HP EliteBook
2014-11-01 2:57 ` Dmitry Torokhov
@ 2014-11-02 15:42 ` Luis Henriques
0 siblings, 0 replies; 4+ messages in thread
From: Luis Henriques @ 2014-11-02 15:42 UTC (permalink / raw)
To: Dmitry Torokhov; +Cc: linux-input, linux-kernel
On Fri, Oct 31, 2014 at 07:57:37PM -0700, Dmitry Torokhov wrote:
> On Tue, Oct 28, 2014 at 04:08:41PM -0700, Dmitry Torokhov wrote:
> > On Tue, Oct 28, 2014 at 10:27:12PM +0000, Luis Henriques wrote:
> > > This laptop requires active multiplexing to be enabled in order to be able
> > > to separate the PS/2 mouse and the touchpad.
> > >
> > > Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
> >
> > Applied, thank you.
>
> Actually I am reverting the nomux patch, so unapplied ;)
That works for me as well :-) Thanks!
Cheers,
--
Luís
--
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] 4+ messages in thread
end of thread, other threads:[~2014-11-02 15:42 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-28 22:27 [PATCH v2] Input: i8042 - add mux quirk for HP EliteBook Luis Henriques
2014-10-28 23:08 ` Dmitry Torokhov
2014-11-01 2:57 ` Dmitry Torokhov
2014-11-02 15:42 ` Luis Henriques
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).