diff options
author | 1996-10-31 03:29:11 +0000 | |
---|---|---|
committer | 1996-10-31 03:29:11 +0000 | |
commit | ebc9184232ccbd6ce977bb6a81e16e0127623ab0 (patch) | |
tree | 3baeb071e66dbb534c2251e94f99775601c72482 | |
parent | Strip out $LD_* and $IFS if given -p. Code taken from telnetd. (diff) | |
download | wireguard-openbsd-ebc9184232ccbd6ce977bb6a81e16e0127623ab0.tar.xz wireguard-openbsd-ebc9184232ccbd6ce977bb6a81e16e0127623ab0.zip |
Add ATM defines. From Jim Rees <rees@umich.edu>
-rw-r--r-- | sys/dev/pci/pci_subr.c | 3 | ||||
-rw-r--r-- | sys/dev/pci/pcireg.h | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/pci/pci_subr.c b/sys/dev/pci/pci_subr.c index 187a690e747..566e662cb09 100644 --- a/sys/dev/pci/pci_subr.c +++ b/sys/dev/pci/pci_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_subr.c,v 1.2 1996/04/18 23:48:03 niklas Exp $ */ +/* $OpenBSD: pci_subr.c,v 1.3 1996/10/31 03:29:11 millert Exp $ */ /* $NetBSD: pci_subr.c,v 1.17 1996/03/02 02:28:48 cgd Exp $ */ /* @@ -76,6 +76,7 @@ struct pci_class pci_subclass_network[] = { { "ethernet", PCI_SUBCLASS_NETWORK_ETHERNET, }, { "token ring", PCI_SUBCLASS_NETWORK_TOKENRING, }, { "FDDI", PCI_SUBCLASS_NETWORK_FDDI, }, + { "ATM", PCI_SUBCLASS_NETWORK_ATM, }, { "miscellaneous", PCI_SUBCLASS_NETWORK_MISC, }, { 0 }, }; diff --git a/sys/dev/pci/pcireg.h b/sys/dev/pci/pcireg.h index fab00dfa6fb..d989402bc15 100644 --- a/sys/dev/pci/pcireg.h +++ b/sys/dev/pci/pcireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pcireg.h,v 1.3 1996/04/21 22:25:49 deraadt Exp $ */ +/* $OpenBSD: pcireg.h,v 1.4 1996/10/31 03:29:11 millert Exp $ */ /* $NetBSD: pcireg.h,v 1.7 1996/03/27 04:08:27 cgd Exp $ */ /* @@ -141,6 +141,7 @@ typedef u_int8_t pci_revision_t; #define PCI_SUBCLASS_NETWORK_ETHERNET 0x00 #define PCI_SUBCLASS_NETWORK_TOKENRING 0x01 #define PCI_SUBCLASS_NETWORK_FDDI 0x02 +#define PCI_SUBCLASS_NETWORK_ATM 0x03 #define PCI_SUBCLASS_NETWORK_MISC 0x80 /* 0x03 display subclasses */ |