summaryrefslogtreecommitdiffstats
path: root/sys/powerpc/include/intr.h
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-03-20 23:17:50 +0000
committeralfred <alfred@FreeBSD.org>2002-03-20 23:17:50 +0000
commitf1b2b9896d0dcac4ea615a304a83c86bd728f7cd (patch)
tree511e9436eaa0421e94a0c839e77bd98aadec76c2 /sys/powerpc/include/intr.h
parentc1cfd2b4ddb0130e096a6054fa9730f51f4c96dd (diff)
downloadFreeBSD-src-f1b2b9896d0dcac4ea615a304a83c86bd728f7cd.zip
FreeBSD-src-f1b2b9896d0dcac4ea615a304a83c86bd728f7cd.tar.gz
Remove __P.
Reveiwed by: benno
Diffstat (limited to 'sys/powerpc/include/intr.h')
-rw-r--r--sys/powerpc/include/intr.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/powerpc/include/intr.h b/sys/powerpc/include/intr.h
index a723bd4..8bc417c 100644
--- a/sys/powerpc/include/intr.h
+++ b/sys/powerpc/include/intr.h
@@ -69,7 +69,7 @@
* the list. The handler is called with its (single) argument.
*/
struct intrhand {
- int (*ih_fun) __P((void *));
+ int (*ih_fun)(void *);
void *ih_arg;
u_long ih_count;
struct intrhand *ih_next;
@@ -78,14 +78,14 @@ struct intrhand {
};
#endif
-void setsoftclock __P((void));
-void clearsoftclock __P((void));
-void setsoftnet __P((void));
-void clearsoftnet __P((void));
+void setsoftclock(void);
+void clearsoftclock(void);
+void setsoftnet(void);
+void clearsoftnet(void);
-void do_pending_int __P((void));
+void do_pending_int(void);
-static __inline void softintr __P((int));
+static __inline void softintr(int);
extern u_int cpl, ipending, tickspending;
extern int imask[];
OpenPOWER on IntegriCloud