diff options
author | Matt Jacob <mjacob@FreeBSD.org> | 2007-05-20 16:43:35 +0000 |
---|---|---|
committer | Matt Jacob <mjacob@FreeBSD.org> | 2007-05-20 16:43:35 +0000 |
commit | c512bc298cd2f211091ff38a4973eb00159da9e5 (patch) | |
tree | 23bc17f894a86406567cd4cb1b15914253f54697 /sys/dev/de/if_devar.h | |
parent | 62afade2cccf2b0d8432768dbc2a1c91c40fda72 (diff) |
Increase size of timer counter bitfield to accomodate the actual size of the
default timer value.
Discovered By: gcc 4.2
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=169797
Diffstat (limited to 'sys/dev/de/if_devar.h')
-rw-r--r-- | sys/dev/de/if_devar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/de/if_devar.h b/sys/dev/de/if_devar.h index 8b7e3ce02258..3fd341047a66 100644 --- a/sys/dev/de/if_devar.h +++ b/sys/dev/de/if_devar.h @@ -521,7 +521,7 @@ struct tulip_softc { u_int32_t tulip_intrmask; u_int32_t tulip_cmdmode; u_int32_t tulip_last_system_error:3; - u_int32_t tulip_txtimer:2; /* transmission timer */ + u_int32_t tulip_txtimer:3; /* transmission timer */ u_int32_t tulip_system_errors; u_int32_t tulip_statusbits; /* status bits from * CSR5 that may need |