summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorJason Wright <jason@cvs.openbsd.org>2000-03-22 04:47:02 +0000
committerJason Wright <jason@cvs.openbsd.org>2000-03-22 04:47:02 +0000
commit82396f08cc1a56e456629bcfd2102672a464950a (patch)
treeb5e6c79f7a2bd81c777a55b74e26c191b6256fa3 /sys
parent9bf9b649d3aa5abd99ec7e24122222520d45590c (diff)
Oops... catch up with variable renaming in header file
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/pci/hifn7751.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/hifn7751.c b/sys/dev/pci/hifn7751.c
index 65f2379d37b..1070e9dd118 100644
--- a/sys/dev/pci/hifn7751.c
+++ b/sys/dev/pci/hifn7751.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: hifn7751.c,v 1.14 2000/03/18 02:41:45 jason Exp $ */
+/* $OpenBSD: hifn7751.c,v 1.15 2000/03/22 04:47:01 jason Exp $ */
/*
* Invertex AEON / Hi/fn 7751 driver
@@ -1162,7 +1162,7 @@ hifn_intr(arg)
if (HIFN_USING_MAC(cmd->flags) && (cmd->flags & HIFN_DECODE)) {
u_int8_t *result_buf = dma->result_bufs[wake_pos];
- cmd->result_status = (result_buf[8] & 0x2) ?
+ cmd->result_flags = (result_buf[8] & 0x2) ?
HIFN_MAC_BAD : 0;
printf("%s: byte index 8 of result 0x%02x\n",
sc->sc_dv.dv_xname, (u_int32_t) result_buf[8]);