diff options
author | 2007-02-21 13:10:45 +0000 | |
---|---|---|
committer | 2007-02-21 13:10:45 +0000 | |
commit | 61b69171dc601987dcbf5ce9853fbfdecb2b7d15 (patch) | |
tree | a186b82d51bec0249c3bef591a4e4cb4cfbebde8 | |
parent | put the structs defining the content of pcidevs_data.h into that header (diff) | |
download | wireguard-openbsd-61b69171dc601987dcbf5ce9853fbfdecb2b7d15.tar.xz wireguard-openbsd-61b69171dc601987dcbf5ce9853fbfdecb2b7d15.zip |
regen for inclusion of the structs used in pcidevs_data.h
-rw-r--r-- | sys/dev/pci/pcidevs.h | 2 | ||||
-rw-r--r-- | sys/dev/pci/pcidevs_data.h | 15 |
2 files changed, 15 insertions, 2 deletions
diff --git a/sys/dev/pci/pcidevs.h b/sys/dev/pci/pcidevs.h index 486a9a6fdaf..cbbec02ba21 100644 --- a/sys/dev/pci/pcidevs.h +++ b/sys/dev/pci/pcidevs.h @@ -2,7 +2,7 @@ * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. * * generated from: - * OpenBSD: pcidevs,v 1.1214 2007/02/17 11:41:49 kettenis Exp + * OpenBSD: pcidevs,v 1.1213 2007/02/10 23:17:19 kettenis Exp */ /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ diff --git a/sys/dev/pci/pcidevs_data.h b/sys/dev/pci/pcidevs_data.h index 3084d018095..49a9f64e9f6 100644 --- a/sys/dev/pci/pcidevs_data.h +++ b/sys/dev/pci/pcidevs_data.h @@ -2,8 +2,21 @@ * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. * * generated from: - * OpenBSD: pcidevs,v 1.1214 2007/02/17 11:41:49 kettenis Exp + * OpenBSD: pcidevs,v 1.1213 2007/02/10 23:17:19 kettenis Exp */ + +/* Descriptions of known vendors and devices. */ +struct pci_known_vendor { + pci_vendor_id_t vendor; + const char *vendorname; +}; + +struct pci_known_product { + pci_vendor_id_t vendor; + pci_product_id_t product; + const char *productname; +}; + /* $NetBSD: pcidevs,v 1.30 1997/06/24 06:20:24 thorpej Exp $ */ /* |