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/isa/hsq.c | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/hsq.c')
-rw-r--r-- | sys/dev/isa/hsq.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/isa/hsq.c b/sys/dev/isa/hsq.c index 9164925a74e..997b48c0465 100644 --- a/sys/dev/isa/hsq.c +++ b/sys/dev/isa/hsq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hsq.c,v 1.1 1999/11/28 12:15:08 downsj Exp $ */ +/* $OpenBSD: hsq.c,v 1.2 2002/03/14 01:26:56 millert Exp $ */ /*- * Copyright (c) 1999 Denis A. Doroshenko. All rights reserved. @@ -114,10 +114,10 @@ struct hsq_softc { bus_space_handle_t sc_slaveioh[NSLAVES]; }; -int hsqprobe __P((struct device *, void *, void *)); -void hsqattach __P((struct device *, struct device *, void *)); -int hsqintr __P((void *)); -int hsqprint __P((void *, const char *)); +int hsqprobe(struct device *, void *, void *); +void hsqattach(struct device *, struct device *, void *); +int hsqintr(void *); +int hsqprint(void *, const char *); struct cfattach hsq_ca = { sizeof(struct hsq_softc), hsqprobe, hsqattach |