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/tc/ioasicvar.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/tc/ioasicvar.h')
-rw-r--r-- | sys/dev/tc/ioasicvar.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/tc/ioasicvar.h b/sys/dev/tc/ioasicvar.h index c3d369f1fd7..db25f864d7d 100644 --- a/sys/dev/tc/ioasicvar.h +++ b/sys/dev/tc/ioasicvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ioasicvar.h,v 1.3 1997/11/07 08:07:51 niklas Exp $ */ +/* $OpenBSD: ioasicvar.h,v 1.4 2002/03/14 01:27:03 millert Exp $ */ /* $NetBSD: ioasicvar.h,v 1.2 1996/03/17 21:37:45 jonathan Exp $ */ /* @@ -63,12 +63,12 @@ extern tc_addr_t ioasic_base; */ void ioasic_intr_establish __P((struct device *, void *, tc_intrlevel_t, int (*)(void *), void *)); -void ioasic_intr_disestablish __P((struct device *, void *)); +void ioasic_intr_disestablish(struct device *, void *); /* * Miscellaneous helper functions. */ -int ioasic_submatch __P((struct cfdata *, struct ioasicdev_attach_args *)); -char *ioasic_lance_ether_address __P((void)); -void ioasic_lance_dma_setup __P((void *)); +int ioasic_submatch(struct cfdata *, struct ioasicdev_attach_args *); +char *ioasic_lance_ether_address(void); +void ioasic_lance_dma_setup(void *); |