diff options
Diffstat (limited to 'drivers/scsi/qla4xxx/ql4_inline.h')
-rw-r--r-- | drivers/scsi/qla4xxx/ql4_inline.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/scsi/qla4xxx/ql4_inline.h b/drivers/scsi/qla4xxx/ql4_inline.h index 8503ad643bdd..655b7bb644d9 100644 --- a/drivers/scsi/qla4xxx/ql4_inline.h +++ b/drivers/scsi/qla4xxx/ql4_inline.h | |||
@@ -82,3 +82,15 @@ qla4xxx_disable_intrs(struct scsi_qla_host *ha) | |||
82 | __qla4xxx_disable_intrs(ha); | 82 | __qla4xxx_disable_intrs(ha); |
83 | spin_unlock_irqrestore(&ha->hardware_lock, flags); | 83 | spin_unlock_irqrestore(&ha->hardware_lock, flags); |
84 | } | 84 | } |
85 | |||
86 | static inline int qla4xxx_get_chap_type(struct ql4_chap_table *chap_entry) | ||
87 | { | ||
88 | int type; | ||
89 | |||
90 | if (chap_entry->flags & BIT_7) | ||
91 | type = LOCAL_CHAP; | ||
92 | else | ||
93 | type = BIDI_CHAP; | ||
94 | |||
95 | return type; | ||
96 | } | ||