diff options
author | imp <imp@FreeBSD.org> | 2000-10-12 03:51:16 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2000-10-12 03:51:16 +0000 |
commit | ea0e2747d8b75e9a9364327af892848bf02ee75c (patch) | |
tree | e6ea7b62733fac0ae90913231a08dde2ad872b41 /sys/dev/pcic | |
parent | aafc1878fc75e62a7b5831a4bf7a5de695962f45 (diff) | |
download | FreeBSD-src-ea0e2747d8b75e9a9364327af892848bf02ee75c.zip FreeBSD-src-ea0e2747d8b75e9a9364327af892848bf02ee75c.tar.gz |
Another PnP pcic card: SMC Swapbox Plug and Play
Submitted by: gallatin
Diffstat (limited to 'sys/dev/pcic')
-rw-r--r-- | sys/dev/pcic/i82365_isa.c | 3 | ||||
-rw-r--r-- | sys/dev/pcic/i82365reg.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pcic/i82365_isa.c b/sys/dev/pcic/i82365_isa.c index 1f1ef1f..800b848 100644 --- a/sys/dev/pcic/i82365_isa.c +++ b/sys/dev/pcic/i82365_isa.c @@ -115,7 +115,8 @@ static struct isa_pnp_id pcic_ids[] = { {PCIC_PNP_CL_PD6720, NULL}, /* PNP0E01 */ {PCIC_PNP_VLSI_82C146, NULL}, /* PNP0E02 */ {PCIC_PNP_82365_CARDBUS, NULL}, /* PNP0E03 */ - {PCIC_PNP_ACTIONTEC, NULL}, /* AEI0218 */ + {PCIC_PNP_ACTIONTEC, NULL}, /* AEI0218 */ + {PCIC_PNP_SCM_SWAPBOX, NULL}, /* SCM0469 */ {0} }; diff --git a/sys/dev/pcic/i82365reg.h b/sys/dev/pcic/i82365reg.h index c26b3f9..3bebfd9 100644 --- a/sys/dev/pcic/i82365reg.h +++ b/sys/dev/pcic/i82365reg.h @@ -347,4 +347,5 @@ #define PCIC_PNP_CL_PD6720 0x010ED041 /* PNP0E01 */ #define PCIC_PNP_VLSI_82C146 0x020ED041 /* PNP0E02 */ #define PCIC_PNP_82365_CARDBUS 0x030ED041 /* PNP0E03 */ -#define PCIC_PNP_ACTIONTEC 0x1802A904 /* AEI0218 */ +#define PCIC_PNP_ACTIONTEC 0x1802A904 /* AEI0218 */ +#define PCIC_PNP_SCM_SWAPBOX 0x1802A904 /* SCM0469 */ |