Add device IDs for Linksys PCMPC200 Cardbus card.

PR:		kern/75582
Submitted by:	Gary Palmer
This commit is contained in:
Gleb Smirnoff 2006-06-07 12:26:23 +00:00
parent c1bfc47fa7
commit f67dea8260
2 changed files with 12 additions and 0 deletions

View file

@ -220,6 +220,8 @@ static struct dc_type dc_devs[] = {
"Microsoft MN-120 CardBus 10/100" },
{ DC_DEVID(DC_VENDORID_MICROSOFT, DC_DEVICEID_MSMN130), 0,
"Microsoft MN-130 10/100" },
{ DC_DEVID(DC_VENDORID_LINKSYS, DC_DEVICEID_PCMPC200), 0,
"Linksys PCMPC200 10/100" },
{ 0, 0, NULL }
};

View file

@ -1005,6 +1005,16 @@ struct dc_softc {
#define DC_DEVICEID_MSMN120 0x0001
#define DC_DEVICEID_MSMN130 0x0002
/*
* Linksys vendor ID.
*/
#define DC_VENDORID_LINKSYS 0x1737
/*
* Linksys device IDs.
*/
#define DC_DEVICEID_PCMPC200 0xab08
#define DC_DEVID(vendor, device) ((device) << 16 | (vendor))
/*