diff options
author | 2002-03-14 01:26:25 +0000 | |
---|---|---|
committer | 2002-03-14 01:26:25 +0000 | |
commit | c4071fd13883b3f74b90a411bbb39755a785aeaa (patch) | |
tree | 241e7c760222fac909b512d36156c6db1b610256 /sys/dev/isa/essvar.h | |
parent | compare pointers with NULL not 0 (diff) | |
download | wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.tar.xz wireguard-openbsd-c4071fd13883b3f74b90a411bbb39755a785aeaa.zip |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/isa/essvar.h')
-rw-r--r-- | sys/dev/isa/essvar.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/isa/essvar.h b/sys/dev/isa/essvar.h index a3530f682b0..b2163842d7c 100644 --- a/sys/dev/isa/essvar.h +++ b/sys/dev/isa/essvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: essvar.h,v 1.3 2001/01/29 06:27:59 mickey Exp $ */ +/* $OpenBSD: essvar.h,v 1.4 2002/03/14 01:26:56 millert Exp $ */ /* $NetBSD: essvar.h,v 1.14 1999/03/18 06:03:31 mycroft Exp $ */ /* * Copyright 1997 @@ -34,7 +34,7 @@ */ /* -** @(#) $RCSfile: essvar.h,v $ $Revision: 1.3 $ (SHARK) $Date: 2001/01/29 06:27:59 $ +** @(#) $RCSfile: essvar.h,v $ $Revision: 1.4 $ (SHARK) $Date: 2002/03/14 01:26:56 $ ** **++ ** @@ -103,7 +103,7 @@ struct ess_audio_channel int ist; void *ih; /* interrupt vectoring */ u_long nintr; /* number of interrupts taken */ - void (*intr)__P((void*)); /* ISR for DMA complete */ + void (*intr)(void*); /* ISR for DMA complete */ void *arg; /* arg for intr() */ /* Status information */ @@ -159,6 +159,6 @@ struct ess_softc u_int sc_version; /* Legacy ES688/ES1688 ID */ }; -int essmatch __P((struct ess_softc *)); -void essattach __P((struct ess_softc *)); +int essmatch(struct ess_softc *); +void essattach(struct ess_softc *); |