diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2001-08-11 06:40:36 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2001-08-11 06:40:36 +0000 |
commit | 6f9dc2d5487e01f694c67292c94c9a23fbbb08ef (patch) | |
tree | f7972dec4a56b453efb617a26672985b2f4d0bcc /sys/dev/pci/hifn7751.c | |
parent | d57ad7ec3fc9f22c355c6d7aae03525403b5f02b (diff) |
move hifn_stats definition to header
Diffstat (limited to 'sys/dev/pci/hifn7751.c')
-rw-r--r-- | sys/dev/pci/hifn7751.c | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c index f42a7e84079..4d9709650ff 100644 --- a/sys/dev/pci/hifn7751.c +++ b/sys/dev/pci/hifn7751.c @@ -1,4 +1,4 @@ -/* $OpenBSD: hifn7751.c,v 1.90 2001/08/08 03:46:44 jason Exp $ */ +/* $OpenBSD: hifn7751.c,v 1.91 2001/08/11 06:40:35 jason Exp $ */ /* * Invertex AEON / Hifn 7751 driver @@ -104,15 +104,7 @@ int hifn_init_pubrng __P((struct hifn_softc *)); void hifn_rng __P((void *)); void hifn_tick __P((void *)); -struct hifn_stats { - u_int64_t hst_ibytes; - u_int64_t hst_obytes; - u_int32_t hst_ipackets; - u_int32_t hst_opackets; - u_int32_t hst_invalid; - u_int32_t hst_nomem; - u_int32_t hst_abort; -} hifnstats; +struct hifn_stats hifnstats; int hifn_probe(parent, match, aux) |