diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2001-09-04 21:33:06 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2001-09-04 21:33:06 +0000 |
| commit | f6a3bcf86c605cf6ebc5bdd5a4b6a42ad7ec4153 (patch) | |
| tree | b0c73e298222e2325425fc000b1edf4e23354d60 | |
| parent | 2505b3ed257b8ceb9e7400042415ac984b4672f7 (diff) | |
Notes
| -rw-r--r-- | sys/dev/isp/isp_freebsd.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h index b3110ce5ff12..91b837d60737 100644 --- a/sys/dev/isp/isp_freebsd.h +++ b/sys/dev/isp/isp_freebsd.h @@ -103,10 +103,12 @@ struct isposinfo { #ifdef ISP_TARGET_MODE #define TM_WANTED 0x80 #define TM_BUSY 0x40 -#define TM_WILDCARD_ENABLED 0x20 -#define TM_TMODE_ENABLED 0x03 - u_int8_t tmflags; - u_int8_t rstatus; +#define TM_WILDCARD_ENABLED 0x02 +#define TM_TMODE_ENABLED 0x01 + struct cv tgtcv0[2]; /* two busses */ + struct cv tgtcv1[2]; /* two busses */ + u_int8_t tmflags[2]; /* two busses */ + u_int8_t rstatus[2]; /* two bussed */ u_int16_t rollinfo; tstate_t tsdflt[2]; /* two busses */ tstate_t *lun_hash[LUN_HASH_SIZE]; |
