qla2xxx: Remove unused reverse_ini_mode
With support for dual mode in the driver, this mode becomes dead code. Remove reverse_ini_mode from code. Signed-off-by: Himanshu Madhani <himanshu.madhani@cavium.com> Signed-off-by: Bart Van Assche <bart.vanassche@sandisk.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
This commit is contained in:
parent
ead038556f
commit
0ca5593849
|
@ -3237,7 +3237,6 @@ struct qlt_hw_data {
|
|||
/* Protected by hw lock */
|
||||
uint32_t enable_class_2:1;
|
||||
uint32_t enable_explicit_conf:1;
|
||||
uint32_t ini_mode_force_reverse:1;
|
||||
uint32_t node_name_set:1;
|
||||
|
||||
dma_addr_t atio_dma; /* Physical address. */
|
||||
|
|
|
@ -5858,8 +5858,6 @@ EXPORT_SYMBOL(qlt_lport_deregister);
|
|||
/* Must be called under HW lock */
|
||||
static void qlt_set_mode(struct scsi_qla_host *vha)
|
||||
{
|
||||
struct qla_hw_data *ha = vha->hw;
|
||||
|
||||
switch (ql2x_ini_mode) {
|
||||
case QLA2XXX_INI_MODE_DISABLED:
|
||||
case QLA2XXX_INI_MODE_EXCLUSIVE:
|
||||
|
@ -5874,16 +5872,11 @@ static void qlt_set_mode(struct scsi_qla_host *vha)
|
|||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (ha->tgt.ini_mode_force_reverse)
|
||||
qla_reverse_ini_mode(vha);
|
||||
}
|
||||
|
||||
/* Must be called under HW lock */
|
||||
static void qlt_clear_mode(struct scsi_qla_host *vha)
|
||||
{
|
||||
struct qla_hw_data *ha = vha->hw;
|
||||
|
||||
switch (ql2x_ini_mode) {
|
||||
case QLA2XXX_INI_MODE_DISABLED:
|
||||
vha->host->active_mode = MODE_UNKNOWN;
|
||||
|
@ -5898,9 +5891,6 @@ static void qlt_clear_mode(struct scsi_qla_host *vha)
|
|||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
if (ha->tgt.ini_mode_force_reverse)
|
||||
qla_reverse_ini_mode(vha);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -995,14 +995,6 @@ static inline bool qla_dual_mode_enabled(struct scsi_qla_host *ha)
|
|||
return (ha->host->active_mode == MODE_DUAL);
|
||||
}
|
||||
|
||||
static inline void qla_reverse_ini_mode(struct scsi_qla_host *ha)
|
||||
{
|
||||
if (ha->host->active_mode & MODE_INITIATOR)
|
||||
ha->host->active_mode &= ~MODE_INITIATOR;
|
||||
else
|
||||
ha->host->active_mode |= MODE_INITIATOR;
|
||||
}
|
||||
|
||||
static inline uint32_t sid_to_key(const uint8_t *s_id)
|
||||
{
|
||||
uint32_t key;
|
||||
|
|
Loading…
Reference in New Issue