diff options
Diffstat (limited to 'sys/arch/alpha/pci/lcavar.h')
-rw-r--r-- | sys/arch/alpha/pci/lcavar.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sys/arch/alpha/pci/lcavar.h b/sys/arch/alpha/pci/lcavar.h index 25762783af6..d09596a0d5d 100644 --- a/sys/arch/alpha/pci/lcavar.h +++ b/sys/arch/alpha/pci/lcavar.h @@ -1,5 +1,5 @@ -/* $OpenBSD: lcavar.h,v 1.4 1996/10/30 22:40:02 niklas Exp $ */ -/* $NetBSD: lcavar.h,v 1.3 1996/04/12 06:08:35 cgd Exp $ */ +/* $OpenBSD: lcavar.h,v 1.5 1996/12/08 00:20:38 niklas Exp $ */ +/* $NetBSD: lcavar.h,v 1.4 1996/10/23 04:12:26 cgd Exp $ */ /* * Copyright (c) 1995, 1996 Carnegie-Mellon University. @@ -38,7 +38,7 @@ * do their dirty work (and more!). */ struct lca_config { - struct alpha_bus_chipset lc_bc; + bus_space_tag_t lc_iot, lc_memt; struct alpha_pci_chipset lc_pc; }; @@ -50,3 +50,6 @@ struct lca_softc { void lca_init __P((struct lca_config *)); void lca_pci_init __P((pci_chipset_tag_t, void *)); + +bus_space_tag_t apecs_lca_bus_io_init __P((void *)); +bus_space_tag_t apecs_lca_bus_mem_init __P((void *)); |