diff options
author | mjacob <mjacob@FreeBSD.org> | 2007-05-20 16:43:35 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2007-05-20 16:43:35 +0000 |
commit | d26133e73165fd0ffbf91000c21c5696e66d4c43 (patch) | |
tree | 23bc17f894a86406567cd4cb1b15914253f54697 /sys/dev/de | |
parent | 6aa8341d7584a00bcb06aaf727c729e0f98e3abd (diff) | |
download | FreeBSD-src-d26133e73165fd0ffbf91000c21c5696e66d4c43.zip FreeBSD-src-d26133e73165fd0ffbf91000c21c5696e66d4c43.tar.gz |
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
Diffstat (limited to 'sys/dev/de')
-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 8b7e3ce..3fd3410 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 |