diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-05-31 02:45:43 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-05-31 02:45:43 +0000 |
commit | 05464d11f08ccea6b5f871c2916fbd513b6c0200 (patch) | |
tree | 3accb0e892a1a36832f144cdeee089609edb7686 /sys | |
parent | ee85271d27e8492c95348b6fac1885094094ec6a (diff) |
allow TULIP_TXTIMER to fit in the softc field tulip_txtimer.
From NetBSD
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pci/if_devar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/pci/if_devar.h b/sys/dev/pci/if_devar.h index f18e624448a..0fda63a060b 100644 --- a/sys/dev/pci/if_devar.h +++ b/sys/dev/pci/if_devar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_devar.h,v 1.25 2006/05/06 02:57:30 brad Exp $ */ +/* $OpenBSD: if_devar.h,v 1.26 2006/05/31 02:45:42 brad Exp $ */ /* $NetBSD: if_devar.h,v 1.13 1997/06/08 18:46:36 thorpej Exp $ */ /*- @@ -502,7 +502,7 @@ struct _tulip_softc_t { u_int32_t tulip_cmdmode; /* our copy of csr_cmdmode */ u_int32_t tulip_last_system_error : 3; /* last system error (only value is TULIP_SYSTEMERROR is also set) */ - u_int32_t tulip_txtimer : 2; /* transmission timer */ + u_int32_t tulip_txtimer; /* transmission timer */ u_int32_t tulip_system_errors; /* number of system errors encountered */ u_int32_t tulip_statusbits; /* status bits from CSR5 that may need to be printed */ |