diff --git a/sys/pccard/i82365.h b/sys/pccard/i82365.h index dcb787dd6405..884f1dbd0250 100644 --- a/sys/pccard/i82365.h +++ b/sys/pccard/i82365.h @@ -329,3 +329,16 @@ #define PCIC_CARD_SLOTS 4 #define PCIC_MAX_CARDS 2 #define PCIC_MAX_SLOTS (PCIC_MAX_CARDS * PCIC_CARD_SLOTS) + +/* Plug and play */ +#define PCIC_PNP_ACTIONTEC 0x1802A904 /* AEI0218 */ +#define PCIC_PNP_IBM3765 0x65374d24 /* IBM3765 */ +#define PCIC_PNP_82365 0x000ED041 /* PNP0E00 */ +#define PCIC_PNP_CL_PD6720 0x010ED041 /* PNP0E01 */ +#define PCIC_PNP_VLSI_82C146 0x020ED041 /* PNP0E02 */ +#define PCIC_PNP_82365_CARDBUS 0x030ED041 /* PNP0E03 */ +#define PCIC_PNP_SCM_SWAPBOX 0x69046d4c /* SMC0469 */ + +/* C-Bus PnP Definitions */ +#define PCIC_NEC_PC9801_102 0x9180a3b8 /* NEC8091 PC-9801-102 */ +#define PCIC_NEC_PC9821RA_E01 0x2181a3b8 /* NEC8121 PC-9821RA-E01 */ diff --git a/sys/pccard/pcic.c b/sys/pccard/pcic.c index 10271c93e7ca..4fe27a3e84b8 100644 --- a/sys/pccard/pcic.c +++ b/sys/pccard/pcic.c @@ -48,7 +48,6 @@ /* Get pnp IDs */ #include -#include #include #include "card_if.h" diff --git a/sys/pccard/pcic_isa.c b/sys/pccard/pcic_isa.c index c80a1acacb6a..b1228462d84c 100644 --- a/sys/pccard/pcic_isa.c +++ b/sys/pccard/pcic_isa.c @@ -40,7 +40,6 @@ /* Get pnp IDs */ #include -#include #include #include "card_if.h"