Commit a7fc9e38 authored by Dave Jones's avatar Dave Jones Committed by Jeff Garzik

[netdrvr tulip] fix obvious typo in CSR6 register values

parent 48ed6ff8
......@@ -352,9 +352,9 @@ void tulip_select_media(struct net_device *dev, int startup)
if (tulip_media_cap[dev->if_port] & MediaIsMII) {
new_csr6 = 0x020E0000;
} else if (tulip_media_cap[dev->if_port] & MediaIsFx) {
new_csr6 = 0x028600000;
new_csr6 = 0x02860000;
} else
new_csr6 = 0x038600000;
new_csr6 = 0x03860000;
if (tulip_debug > 1)
printk(KERN_DEBUG "%s: No media description table, assuming "
"%s transceiver, CSR12 %2.2x.\n",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment