Lines Matching refs:tpnt
286 NCR_700_detect(struct scsi_host_template *tpnt, in NCR_700_detect() argument
296 if(tpnt->sdev_attrs == NULL) in NCR_700_detect()
297 tpnt->sdev_attrs = NCR_700_dev_attrs; in NCR_700_detect()
316 tpnt->queuecommand = NCR_700_queuecommand; in NCR_700_detect()
317 tpnt->eh_abort_handler = NCR_700_abort; in NCR_700_detect()
318 tpnt->eh_bus_reset_handler = NCR_700_bus_reset; in NCR_700_detect()
319 tpnt->eh_host_reset_handler = NCR_700_host_reset; in NCR_700_detect()
320 tpnt->can_queue = NCR_700_COMMAND_SLOTS_PER_HOST; in NCR_700_detect()
321 tpnt->sg_tablesize = NCR_700_SG_SEGMENTS; in NCR_700_detect()
322 tpnt->cmd_per_lun = NCR_700_CMD_PER_LUN; in NCR_700_detect()
323 tpnt->use_clustering = ENABLE_CLUSTERING; in NCR_700_detect()
324 tpnt->slave_configure = NCR_700_slave_configure; in NCR_700_detect()
325 tpnt->slave_destroy = NCR_700_slave_destroy; in NCR_700_detect()
326 tpnt->slave_alloc = NCR_700_slave_alloc; in NCR_700_detect()
327 tpnt->change_queue_depth = NCR_700_change_queue_depth; in NCR_700_detect()
328 tpnt->use_blk_tags = 1; in NCR_700_detect()
330 if(tpnt->name == NULL) in NCR_700_detect()
331 tpnt->name = "53c700"; in NCR_700_detect()
332 if(tpnt->proc_name == NULL) in NCR_700_detect()
333 tpnt->proc_name = "53c700"; in NCR_700_detect()
335 host = scsi_host_alloc(tpnt, 4); in NCR_700_detect()