diff options
Diffstat (limited to 'sys/dev/pci/agpvar.h')
-rw-r--r-- | sys/dev/pci/agpvar.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/dev/pci/agpvar.h b/sys/dev/pci/agpvar.h index 8f80f7769eb..f363ae5e5a9 100644 --- a/sys/dev/pci/agpvar.h +++ b/sys/dev/pci/agpvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: agpvar.h,v 1.13 2008/05/06 19:19:02 oga Exp $ */ +/* $OpenBSD: agpvar.h,v 1.14 2008/07/12 17:31:06 oga Exp $ */ /* $NetBSD: agpvar.h,v 1.4 2001/10/01 21:54:48 fvdl Exp $ */ /*- @@ -45,6 +45,7 @@ struct agpbus_attach_args { struct pci_attach_args apa_pci_args; + struct pci_attach_args apa_vga_args; }; enum agp_acquire_state { @@ -134,6 +135,9 @@ struct agp_softc { pcireg_t sc_id; pci_chipset_tag_t sc_pc; + pci_chipset_tag_t sc_vgapc; + pcitag_t sc_vgapcitag; + struct agp_methods *sc_methods; void *sc_chipc; /* chipset-dependent state */ |