summaryrefslogtreecommitdiff
path: root/sys/arch/mvmeppc/include
diff options
context:
space:
mode:
authordsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
committerdsl <dsl@NetBSD.org>2009-03-14 14:45:51 +0000
commit02cdf4d2c869ecfa1ae5484cf77eefe2fbcc6d94 (patch)
tree9a02e625d403e5fcedfdc6be4803e2404356bf31 /sys/arch/mvmeppc/include
parentdfbb3f921a23a1aba4463f31ef9233ac94ce606c (diff)
Remove all the __P() from sys (excluding sys/dist)
Diff checked with grep and MK1 eyeball. i386 and amd64 GENERIC and sys still build.
Diffstat (limited to 'sys/arch/mvmeppc/include')
-rw-r--r--sys/arch/mvmeppc/include/autoconf.h8
-rw-r--r--sys/arch/mvmeppc/include/powerpc.h8
2 files changed, 8 insertions, 8 deletions
diff --git a/sys/arch/mvmeppc/include/autoconf.h b/sys/arch/mvmeppc/include/autoconf.h
index 08124a2967a..ba8fdf06b60 100644
--- a/sys/arch/mvmeppc/include/autoconf.h
+++ b/sys/arch/mvmeppc/include/autoconf.h
@@ -1,4 +1,4 @@
-/* $NetBSD: autoconf.h,v 1.3 2007/03/04 06:00:24 christos Exp $ */
+/* $NetBSD: autoconf.h,v 1.4 2009/03/14 14:46:03 dsl Exp $ */
/*-
* Copyright (C) 1998 Internet Research Institute, Inc.
@@ -43,6 +43,6 @@ struct confargs {
/* bus_space_tag_t ca_tag; */
};
-void *mapiodev __P((paddr_t, psize_t));
-paddr_t kvtop __P((void *));
-void *intr_establish __P((int, int, int, int (*)(void *), void *));
+void *mapiodev(paddr_t, psize_t);
+paddr_t kvtop(void *);
+void *intr_establish(int, int, int, int (*)(void *), void *);
diff --git a/sys/arch/mvmeppc/include/powerpc.h b/sys/arch/mvmeppc/include/powerpc.h
index 1a4a1015874..3da652f2f01 100644
--- a/sys/arch/mvmeppc/include/powerpc.h
+++ b/sys/arch/mvmeppc/include/powerpc.h
@@ -1,4 +1,4 @@
-/* $NetBSD: powerpc.h,v 1.3 2005/12/11 12:18:19 christos Exp $ */
+/* $NetBSD: powerpc.h,v 1.4 2009/03/14 14:46:03 dsl Exp $ */
/*
* Copyright (C) 1996 Wolfgang Solfrank.
@@ -38,14 +38,14 @@ struct mem_region {
psize_t size;
};
-void mem_regions __P((struct mem_region **, struct mem_region **));
+void mem_regions(struct mem_region **, struct mem_region **);
/*
* These two functions get used solely in boot() in machdep.c.
*
* Not sure whether boot itself should be implementation dependent instead. XXX
*/
-void ppc_exit __P((void)) __attribute__((__noreturn__));
-void ppc_boot __P((char *bootspec)) __attribute__((__noreturn__));
+void ppc_exit(void) __attribute__((__noreturn__));
+void ppc_boot(char *bootspec) __attribute__((__noreturn__));
#endif /* _MACHINE_POWERPC_H_ */