struct ipr_config_table_entry_wrapper *cfgtew)
 {
        int found = 0;
-       unsigned int proto;
        struct ipr_ioa_cfg *ioa_cfg = res->ioa_cfg;
        struct ipr_resource_entry *gscsi_res = NULL;
 
        res->sdev = NULL;
 
        if (ioa_cfg->sis64) {
-               proto = cfgtew->u.cfgte64->proto;
                res->flags = be16_to_cpu(cfgtew->u.cfgte64->flags);
                res->res_flags = be16_to_cpu(cfgtew->u.cfgte64->res_flags);
                res->qmodel = IPR_QUEUEING_MODEL64(res);
                        set_bit(res->target, ioa_cfg->target_ids);
                }
        } else {
-               proto = cfgtew->u.cfgte->proto;
                res->qmodel = IPR_QUEUEING_MODEL(res);
                res->flags = cfgtew->u.cfgte->flags;
                if (res->flags & IPR_IS_IOA_RESOURCE)
                                 struct ipr_config_table_entry_wrapper *cfgtew)
 {
        char buffer[IPR_MAX_RES_PATH_LENGTH];
-       unsigned int proto;
        int new_path = 0;
 
        if (res->ioa_cfg->sis64) {
                        sizeof(struct ipr_std_inq_data));
 
                res->qmodel = IPR_QUEUEING_MODEL64(res);
-               proto = cfgtew->u.cfgte64->proto;
                res->res_handle = cfgtew->u.cfgte64->res_handle;
                res->dev_id = cfgtew->u.cfgte64->dev_id;
 
                        sizeof(struct ipr_std_inq_data));
 
                res->qmodel = IPR_QUEUEING_MODEL(res);
-               proto = cfgtew->u.cfgte->proto;
                res->res_handle = cfgtew->u.cfgte->res_handle;
        }
 }
  **/
 static int ipr_change_queue_depth(struct scsi_device *sdev, int qdepth)
 {
-       struct ipr_ioa_cfg *ioa_cfg = (struct ipr_ioa_cfg *)sdev->host->hostdata;
-       struct ipr_resource_entry *res;
-       unsigned long lock_flags = 0;
-
-       spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
-       res = (struct ipr_resource_entry *)sdev->hostdata;
-       spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
-
        scsi_change_queue_depth(sdev, qdepth);
        return sdev->queue_depth;
 }