Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 47830
b: refs/heads/master
c: 1e4865f
h: refs/heads/master
v: v3
  • Loading branch information
Dmitry Torokhov committed Feb 10, 2007
1 parent b9eb580 commit fbe6137
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5809d537c1bc7628cee1e580da35f6b4d254e23b
refs/heads/master: 1e4865f8d469b1795e77877410951e5b808a2c4e
5 changes: 4 additions & 1 deletion trunk/drivers/input/serio/i8042.c
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,7 @@ static int __devinit i8042_check_aux(void)
{
int retval = -1;
int irq_registered = 0;
int aux_loop_broken = 0;
unsigned long flags;
unsigned char param;

Expand Down Expand Up @@ -572,6 +573,8 @@ static int __devinit i8042_check_aux(void)
if (i8042_command(&param, I8042_CMD_AUX_TEST) ||
(param && param != 0xfa && param != 0xff))
return -1;

aux_loop_broken = 1;
}

/*
Expand All @@ -595,7 +598,7 @@ static int __devinit i8042_check_aux(void)
* used it for a PCI card or somethig else.
*/

if (i8042_noloop) {
if (i8042_noloop || aux_loop_broken) {
/*
* Without LOOP command we can't test AUX IRQ delivery. Assume the port
* is working and hope we are right.
Expand Down

0 comments on commit fbe6137

Please sign in to comment.