[PATCH 21/47] Remove OSB4/Profusion hack in i8042

From: Vojtech Pavlik
Date: Thu Jul 29 2004 - 09:55:52 EST


You can pull this changeset from:
bk://kernel.bkbits.net/vojtech/input

===================================================================

ChangeSet@xxxxxxxxxxxxx, 2004-06-06 20:13:56+02:00, vojtech@xxxxxxx
input: Remove OSB4/Profusion hack in i8042, as it's handled by
DMI blacklist now.

Signed-off-by: Vojtech Pavlik <vojtech@xxxxxxx>


i8042.c | 11 +----------
1 files changed, 1 insertion(+), 10 deletions(-)

===================================================================

diff -Nru a/drivers/input/serio/i8042.c b/drivers/input/serio/i8042.c
--- a/drivers/input/serio/i8042.c Thu Jul 29 14:40:42 2004
+++ b/drivers/input/serio/i8042.c Thu Jul 29 14:40:42 2004
@@ -481,17 +481,8 @@
if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param != 0xa9)
return -1;
param = 0xa4;
- if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == 0x5b) {
-
-/*
- * Do another loop test with the 0x5a value. Doing anything else upsets
- * Profusion/ServerWorks OSB4 chipsets.
- */
-
- param = 0x5a;
- i8042_command(&param, I8042_CMD_AUX_LOOP);
+ if (i8042_command(&param, I8042_CMD_AUX_LOOP) || param == 0x5b)
return -1;
- }

if (mux_version)
*mux_version = ~param;

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/