From 6a2b5130e37ebbee9c53c98318d72f83bb3e929e Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Mon, 29 May 2000 02:44:33 +0000 Subject: [PATCH] Add ACTIONTECH #define for plug and play. Also add PnP support to NEWCARD for this card. Submitted by: Kazuya Kodama --- sys/dev/pcic/i82365_isa.c | 1 + sys/dev/pcic/i82365reg.h | 1 + sys/pccard/pcic.c | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/dev/pcic/i82365_isa.c b/sys/dev/pcic/i82365_isa.c index e4a98c3aa632..f3995213de8d 100644 --- a/sys/dev/pcic/i82365_isa.c +++ b/sys/dev/pcic/i82365_isa.c @@ -119,6 +119,7 @@ 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 */ {0} }; diff --git a/sys/dev/pcic/i82365reg.h b/sys/dev/pcic/i82365reg.h index 1edfdcd7899a..c26b3f983874 100644 --- a/sys/dev/pcic/i82365reg.h +++ b/sys/dev/pcic/i82365reg.h @@ -347,3 +347,4 @@ #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 */ diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index 18606d6fa6a3..7fb7d7da579e 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -89,7 +89,7 @@ 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 */ - {0x1802a904, NULL}, + {PCIC_PNP_ACTIONTEC, NULL}, /* AEI0218 */ {0} };