diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-09 02:26:06 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-07-09 02:26:06 +0000 |
commit | 015979e0cf8f9170b6e93c7c8d2e1ec7717f54b0 (patch) | |
tree | 01d71604c429c71516ed8138f2af408fdd883d8d /sys/arch/powerpc | |
parent | de1e8ed235485a39b0a8a522c89dbe48c76d1acb (diff) |
looking at other archs vtophys lives there
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r-- | sys/arch/powerpc/include/pmap.h | 4 | ||||
-rw-r--r-- | sys/arch/powerpc/pci/pci_machdep.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/powerpc/include/pmap.h b/sys/arch/powerpc/include/pmap.h index 4fa83a246d5..035a0da3705 100644 --- a/sys/arch/powerpc/include/pmap.h +++ b/sys/arch/powerpc/include/pmap.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pmap.h,v 1.11 2001/07/09 02:14:05 mickey Exp $ */ +/* $OpenBSD: pmap.h,v 1.12 2001/07/09 02:26:05 mickey Exp $ */ /* $NetBSD: pmap.h,v 1.1 1996/09/30 16:34:29 ws Exp $ */ /*- @@ -119,6 +119,8 @@ void pmap_activate __P((struct proc *p)); void pmap_real_memory __P((vm_offset_t *start, vm_size_t *size)); void switchexit __P((struct proc *)); +paddr_t vtophys __P((paddr_t)); + #endif /* _KERNEL */ #endif /* _LOCORE */ #endif /* _MACHINE_PMAP_H_ */ diff --git a/sys/arch/powerpc/pci/pci_machdep.h b/sys/arch/powerpc/pci/pci_machdep.h index 4cfcd352634..6ff493a196c 100644 --- a/sys/arch/powerpc/pci/pci_machdep.h +++ b/sys/arch/powerpc/pci/pci_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pci_machdep.h,v 1.6 2000/10/19 04:53:06 drahn Exp $ */ +/* $OpenBSD: pci_machdep.h,v 1.7 2001/07/09 02:26:05 mickey Exp $ */ /* * Copyright (c) 1996 Carnegie-Mellon University. @@ -89,5 +89,3 @@ struct ppc_pci_chipset { #define pci_ether_hw_addr(c, s) \ (*(c)->pc_ether_hw_addr)((c), (s)) -vm_offset_t vtophys __P((void *)); - |