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/ic/hmevar.h | |
parent | 7b2c79b5895287d37f0c4e3adfc396eb7a6c03fb (diff) |
First round of __P removal in sys
Diffstat (limited to 'sys/dev/ic/hmevar.h')
-rw-r--r-- | sys/dev/ic/hmevar.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ic/hmevar.h b/sys/dev/ic/hmevar.h index 007b151e5e3..e352b62babf 100644 --- a/sys/dev/ic/hmevar.h +++ b/sys/dev/ic/hmevar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hmevar.h,v 1.5 2001/10/09 15:07:20 jason Exp $ */ +/* $OpenBSD: hmevar.h,v 1.6 2002/03/14 01:26:54 millert Exp $ */ /* $NetBSD: hmevar.h,v 1.6 2000/09/28 10:56:57 tsutsui Exp $ */ /*- @@ -90,8 +90,8 @@ struct hme_softc { u_int8_t sc_enaddr[ETHER_ADDR_LEN]; /* MAC address */ /* Special hardware hooks */ - void (*sc_hwreset) __P((struct hme_softc *)); - void (*sc_hwinit) __P((struct hme_softc *)); + void (*sc_hwreset)(struct hme_softc *); + void (*sc_hwinit)(struct hme_softc *); struct hme_sxd sc_txd[HME_TX_RING_MAX], sc_rxd[HME_RX_RING_MAX]; bus_dmamap_t sc_rxmap_spare; @@ -100,6 +100,6 @@ struct hme_softc { }; -void hme_config __P((struct hme_softc *)); -void hme_reset __P((struct hme_softc *)); -int hme_intr __P((void *)); +void hme_config(struct hme_softc *); +void hme_reset(struct hme_softc *); +int hme_intr(void *); |