summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/dev/mongoose.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-14 01:27:20 +0000
commit8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch)
treeac9a52bace179e17769651fb9f805070d78abe5f /sys/arch/hppa/dev/mongoose.c
parent7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff)
First round of __P removal in sys
Diffstat (limited to 'sys/arch/hppa/dev/mongoose.c')
-rw-r--r--sys/arch/hppa/dev/mongoose.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/arch/hppa/dev/mongoose.c b/sys/arch/hppa/dev/mongoose.c
index 055e1164f97..c2c2ad77ab1 100644
--- a/sys/arch/hppa/dev/mongoose.c
+++ b/sys/arch/hppa/dev/mongoose.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mongoose.c,v 1.8 2002/02/05 04:26:06 mickey Exp $ */
+/* $OpenBSD: mongoose.c,v 1.9 2002/03/14 01:26:31 millert Exp $ */
/*
* Copyright (c) 1998,1999 Michael Shalayeff
@@ -167,7 +167,7 @@ struct mongoose_ctrl {
struct hppa_isa_iv {
const char *iv_name;
- int (*iv_handler) __P((void *arg));
+ int (*iv_handler)(void *arg);
void *iv_arg;
int iv_pri;
@@ -206,9 +206,9 @@ union mongoose_attach_args {
struct isabus_attach_args mongoose_isa;
};
-int mgmatch __P((struct device *, void *, void *));
-void mgattach __P((struct device *, struct device *, void *));
-int mgprint __P((void *aux, const char *pnp));
+int mgmatch(struct device *, void *, void *);
+void mgattach(struct device *, struct device *, void *);
+int mgprint(void *aux, const char *pnp);
struct cfattach mongoose_ca = {
sizeof(struct mongoose_softc), mgmatch, mgattach
@@ -251,7 +251,7 @@ mg_isa_attach_hook(struct device *parent, struct device *self,
void *
mg_intr_establish(void *v, int irq, int type, int pri,
- int (*handler) __P((void *)), void *arg, char *name)
+ int (*handler)(void *), void *arg, char *name)
{
struct hppa_isa_iv *iv;
struct mongoose_softc *sc = v;