diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-14 01:27:20 +0000 |
commit | 8327d0774703553db5e1a41a04bfdf4b1797c2ce (patch) | |
tree | ac9a52bace179e17769651fb9f805070d78abe5f /sys/dev/cardbus/cardslot.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/cardbus/cardslot.c')
-rw-r--r-- | sys/dev/cardbus/cardslot.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/cardbus/cardslot.c b/sys/dev/cardbus/cardslot.c index 1bed01f97b1..7201758ac9e 100644 --- a/sys/dev/cardbus/cardslot.c +++ b/sys/dev/cardbus/cardslot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cardslot.c,v 1.1 2000/04/08 05:50:52 aaron Exp $ */ +/* $OpenBSD: cardslot.c,v 1.2 2002/03/14 01:26:53 millert Exp $ */ /* $NetBSD: cardslot.c,v 1.9 2000/03/22 09:35:06 haya Exp $ */ /* @@ -60,15 +60,15 @@ -STATIC void cardslotattach __P((struct device *, struct device *, void *)); +STATIC void cardslotattach(struct device *, struct device *, void *); -STATIC int cardslotmatch __P((struct device *, void *, void *)); -static void create_slot_manager __P((void *)); -static void cardslot_event_thread __P((void *arg)); +STATIC int cardslotmatch(struct device *, void *, void *); +static void create_slot_manager(void *); +static void cardslot_event_thread(void *arg); -STATIC int cardslot_cb_print __P((void *aux, const char *pcic)); -static int cardslot_16_print __P((void *, const char *)); -static int cardslot_16_submatch __P((struct device *, void *,void *)); +STATIC int cardslot_cb_print(void *aux, const char *pcic); +static int cardslot_16_print(void *, const char *); +static int cardslot_16_submatch(struct device *, void *,void *); struct cfattach cardslot_ca = { sizeof(struct cardslot_softc), cardslotmatch, cardslotattach |