diff options
author | mjacob <mjacob@FreeBSD.org> | 2006-05-22 06:47:20 +0000 |
---|---|---|
committer | mjacob <mjacob@FreeBSD.org> | 2006-05-22 06:47:20 +0000 |
commit | a9ce430c0a5186e982eeaf0e18d8785f726ef4e8 (patch) | |
tree | 053b1c71652c451272278d95d80dac07975fa4c9 /sys | |
parent | c4b12e59b3d83b43e879d54b267aa01a531d4b2f (diff) | |
download | FreeBSD-src-a9ce430c0a5186e982eeaf0e18d8785f726ef4e8.zip FreeBSD-src-a9ce430c0a5186e982eeaf0e18d8785f726ef4e8.tar.gz |
Fix longstanding bug where exec throttle is 16 bits- not 8.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/isp/ispvar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h index 48a1d49..3b0ef8d 100644 --- a/sys/dev/isp/ispvar.h +++ b/sys/dev/isp/ispvar.h @@ -248,7 +248,7 @@ typedef struct { uint16_t isp_iid; /* 'initiator' id */ uint16_t isp_loopid; /* hard loop id */ uint16_t isp_fwattr; /* firmware attributes */ - uint8_t isp_execthrottle; + uint16_t isp_execthrottle; uint8_t isp_retry_delay; uint8_t isp_retry_count; uint8_t isp_reserved; |