[eepro100-bug] options documentation seems bad
aaron@aaroncummings.com
aaron@aaroncummings.com
Thu Mar 28 16:42:01 2002
This is in regards to the documentation for using the options attribute
to force speed and half vs full duplex.
http://www.scyld.com/network/eepro100.html says:
Hex Decimal Meaning
0x10 16 Force Full-Duplex operation (must be used with 0x20 or
0x40)
0x20 32 Force 100mbps-only operation
0x40 64 Force 10mbps-only
But the code in eepro100.c seems to indicate:
Hex Decimal Meaning
0x200 512 Force 100mbps, full duplex
0x100 256 Force 100mbps, half duplex
0x020 32 Force 10mbps, full duplex
0x000 0 Force 10mbps, half duplex
Does this seem right?