Misprint in DPRINTK in line 2073
Brought to you by:
jgarzik
Lines 2072-2073 of 8139too.c version 0.9.26 contain
misprint:
DPRINTK ("%s: interrupt status=%#4.4x ackstat=%#4.4x
new intstat=%#4.4x.\n",
dev->name, ackstat, status, RTL_R16 (IntrStatus));
`ackstat' and `status' are swapped in the arguments
of DPRINTK. Line 2073 should be
dev->name, status, ackstat, RTL_R16 (IntrStatus));
Best regards,
Vladik Goytin
goytin@bigfoot.com
Logged In: YES
user_id=17443
Thanks, fixed in 2.4 and 2.5.