diff options
author | Andrew Vasquez <andrew.vasquez@qlogic.com> | 2005-07-06 13:30:26 -0400 |
---|---|---|
committer | James Bottomley <jejb@mulgrave.(none)> | 2005-07-14 10:54:46 -0400 |
commit | 3d71644cf952fd1157a13173237258422ba3c569 (patch) | |
tree | 1bae220781b973a9dca754a08aa7630e05ffc50e /drivers/scsi/qla2xxx/qla_inline.h | |
parent | ac96202ba096f8fc1ccaf45a2f159a52639ece29 (diff) |
[SCSI] qla2xxx: Add ISP24xx definitions.
Add ISP24xx definitions.
Add requisite structure definitions and #define's for ISP24xx
support. Also drop volatile modifiers from device_reg_* register
layouts as the members are never really accessed, only their
offsets within the layout are used during reads and writes.
Signed-off-by: Andrew Vasquez <andrew.vasquez@qlogic.com>
Signed-off-by: James Bottomley <James.Bottomley@SteelEye.com>
Diffstat (limited to 'drivers/scsi/qla2xxx/qla_inline.h')
-rw-r--r-- | drivers/scsi/qla2xxx/qla_inline.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/scsi/qla2xxx/qla_inline.h b/drivers/scsi/qla2xxx/qla_inline.h index 8f99febc15db..6cf7036ccf4c 100644 --- a/drivers/scsi/qla2xxx/qla_inline.h +++ b/drivers/scsi/qla2xxx/qla_inline.h | |||
@@ -236,3 +236,14 @@ qla2x00_delete_timer_from_cmd(srb_t *sp) | |||
236 | } | 236 | } |
237 | } | 237 | } |
238 | 238 | ||
239 | |||
240 | static inline int qla2x00_is_reserved_id(scsi_qla_host_t *, uint16_t); | ||
241 | static inline int | ||
242 | qla2x00_is_reserved_id(scsi_qla_host_t *ha, uint16_t loop_id) | ||
243 | { | ||
244 | if (IS_QLA24XX(ha) || IS_QLA25XX(ha)) | ||
245 | return (loop_id > NPH_LAST_HANDLE); | ||
246 | |||
247 | return ((loop_id > ha->last_loop_id && loop_id < SNS_FIRST_LOOP_ID) || | ||
248 | loop_id == MANAGEMENT_SERVER || loop_id == BROADCAST); | ||
249 | }; | ||