diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-12-29 21:47:14 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-12-29 21:47:14 +0000 |
commit | 40b77aca4b3d08f3e9de73fefcfe09870ce18b4b (patch) | |
tree | 0ddb436ba8bb80dceddeeb7245a0bcaf34366d0d /sys/arch/hppa/include/cpufunc.h | |
parent | f7fd4b7e9daeb064c16747d7a2f2e804241d9150 (diff) |
make fcacheall(), ptlball() void on args, so anybody can call 'em
Diffstat (limited to 'sys/arch/hppa/include/cpufunc.h')
-rw-r--r-- | sys/arch/hppa/include/cpufunc.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/arch/hppa/include/cpufunc.h b/sys/arch/hppa/include/cpufunc.h index 3130110933f..37a53eb18bb 100644 --- a/sys/arch/hppa/include/cpufunc.h +++ b/sys/arch/hppa/include/cpufunc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: cpufunc.h,v 1.4 1998/12/05 17:33:01 mickey Exp $ */ +/* $OpenBSD: cpufunc.h,v 1.5 1998/12/29 21:47:13 mickey Exp $ */ /* * Copyright (c) 1998 Michael Shalayeff @@ -184,9 +184,8 @@ pdtlbe(pa_space_t sp, vm_offset_t off) } #ifdef _KERNEL -struct pdc_cache; -void fcacheall __P((struct pdc_cache *)); -void ptlball __P((struct pdc_cache *)); +void fcacheall __P((void)); +void ptlball __P((void)); int btlb_insert __P((pa_space_t space, vm_offset_t va, vm_offset_t pa, vm_size_t *lenp, u_int prot)); hppa_hpa_t cpu_gethpa __P((int n)); |