Commit 9389d79fbf9a0167ff2de87e8796c6bb803219bf

Authored by Paul Gortmaker
Committed by Jeff Garzik
1 parent 3fd07d3bf0

[PATCH] 8390 Tx fix for non i386 machines

While this is true, E8390_CMD is zero on i386, and thus there should be no
effect for these machines.  Machines like Mac, Amiga etc. which use Alan's
clever register mapping may have a non-zero E8390_CMD and result in bogus
"transmitter busy" type messages from this bug.

Fixes BUG# 3991.

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -1094,7 +1094,7 @@
1094 1094  
1095 1095 outb_p(E8390_NODMA+E8390_PAGE0, e8390_base+E8390_CMD);
1096 1096  
1097   - if (inb_p(e8390_base) & E8390_TRANS)
  1097 + if (inb_p(e8390_base + E8390_CMD) & E8390_TRANS)
1098 1098 {
1099 1099 printk(KERN_WARNING "%s: trigger_send() called with the transmitter busy.\n",
1100 1100 dev->name);