diff --git a/sys/arch/hppa/include/pmap.h b/sys/arch/hppa/include/pmap.h index ef1926e8dd61..a21a034595e0 100644 --- a/sys/arch/hppa/include/pmap.h +++ b/sys/arch/hppa/include/pmap.h @@ -1,4 +1,4 @@ -/* $NetBSD: pmap.h,v 1.11 2006/02/16 20:17:13 perry Exp $ */ +/* $NetBSD: pmap.h,v 1.12 2007/04/07 09:02:07 skrll Exp $ */ /* $OpenBSD: pmap.h,v 1.14 2001/05/09 15:31:24 art Exp $ */ @@ -132,10 +132,10 @@ do { if (pmap) { \ #define pmap_release(pmap) #define pmap_copy(dpmap,spmap,da,len,sa) #define pmap_update(p) -void pmap_activate __P((struct lwp *)); +void pmap_activate(struct lwp *); static __inline void -pmap_deactivate(struct lwp *lwp) +pmap_deactivate(struct lwp *l) { } diff --git a/sys/arch/hppa/include/profile.h b/sys/arch/hppa/include/profile.h index d347318e5dfa..79e019638fc3 100644 --- a/sys/arch/hppa/include/profile.h +++ b/sys/arch/hppa/include/profile.h @@ -1,4 +1,4 @@ -/* $NetBSD: profile.h,v 1.6 2006/02/16 20:17:13 perry Exp $ */ +/* $NetBSD: profile.h,v 1.7 2007/04/07 09:02:07 skrll Exp $ */ /* $OpenBSD: profile.h,v 1.1 1998/12/05 17:25:55 mickey Exp $ */ @@ -36,7 +36,7 @@ #define _MCOUNT_DECL static __inline void _mcount #define MCOUNT \ -extern void mcount __P((void)) __asm("mcount"); \ +extern void mcount(void) __asm("mcount"); \ void \ mcount() \ { \