Add (untested) support for the 3C562D/3C563D. I have been unable to

test this support since I don't have the dongle for the card in
question and the dongle I have for my 3C589D doesn't seem to work on
it.  I don't know if this is due to the damage I did to the 562 card
in transit from freebsdcon, or a mis-matched dongle...
This commit is contained in:
Warner Losh 1999-10-29 06:27:07 +00:00
parent 235d5c76dc
commit 5eafefaf7a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=52621

View File

@ -122,6 +122,8 @@ ep_pccard_identify(u_short id)
"Fast Etherlink 3C574-TX");
case 0x9058: /* 3C589 */
return ("3Com Etherlink III 3C589");
case 0x2056: /* 3C562/3C563 */
return ("3Com 3C562D/3C563D");
}
return (NULL);
}
@ -140,6 +142,7 @@ ep_pccard_card_attach(struct ep_board *epb)
case 0x4b57: /* 3C574B */
epb->mii_trans = 1;
return (1);
case 0x2056: /* 3C562D/3C563D */
case 0x9058: /* 3C589 */
epb->mii_trans = 0;
return (1);