mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Add device IDs for Linksys PCMPC200 Cardbus card.
PR: kern/75582 Submitted by: Gary Palmer
This commit is contained in:
parent
c1bfc47fa7
commit
f67dea8260
2 changed files with 12 additions and 0 deletions
|
|
@ -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 }
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -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))
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue