summaryrefslogtreecommitdiff
path: root/sys/dev/pci/pcivar.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2002-07-12 20:17:04 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2002-07-12 20:17:04 +0000
commit5865d6a998391648e294e7a7d4670166fb810364 (patch)
treef676c2582d4801871f0dcc11309adaa318343ddc /sys/dev/pci/pcivar.h
parentb7951dd4c58d1d7d1cbd884949af928addaa1330 (diff)
support for the agp gart on various agp chipsets.
only i810 driver was tested though. based on the netbsd's lkm, initially ported by hunter@dg.net.ua and later made into shape by mickey. testing by art@ and millert@ .
Diffstat (limited to 'sys/dev/pci/pcivar.h')
-rw-r--r--sys/dev/pci/pcivar.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/sys/dev/pci/pcivar.h b/sys/dev/pci/pcivar.h
index c9419191ede..dc68945d121 100644
--- a/sys/dev/pci/pcivar.h
+++ b/sys/dev/pci/pcivar.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: pcivar.h,v 1.24 2002/03/14 03:16:06 millert Exp $ */
+/* $OpenBSD: pcivar.h,v 1.25 2002/07/12 20:17:03 mickey Exp $ */
/* $NetBSD: pcivar.h,v 1.23 1997/06/06 23:48:05 thorpej Exp $ */
/*
@@ -185,14 +185,11 @@ int pci_get_capability(pci_chipset_tag_t, pcitag_t, int,
/*
* Helper functions for autoconfiguration.
*/
+const char *pci_findvendor(pcireg_t);
void pci_devinfo(pcireg_t, pcireg_t, int, char *);
void set_pci_isa_bridge_callback(void (*)(void *), void *);
-const struct pci_quirkdata *pci_lookup_quirkdata(pci_vendor_id_t,
- pci_product_id_t);
-
-/*
- * Misc.
- */
-const char *pci_findvendor(pcireg_t);
+const struct pci_quirkdata *
+ pci_lookup_quirkdata(pci_vendor_id_t, pci_product_id_t);
+void pciagp_set_pchb(struct pci_attach_args *);
#endif /* _DEV_PCI_PCIVAR_H_ */