Lines Matching defs:host
89 struct Scsi_Host *host;
93 dev_printk(KERN_ERR, &dev->dev, "Failed to allocate host data\n");
113 host = NCR_700_detect(&lasi700_template, hostdata, &dev->dev);
114 if (!host)
116 host->this_id = 7;
117 host->base = base;
118 host->irq = dev->irq;
119 if(request_irq(dev->irq, NCR_700_intr, IRQF_SHARED, "lasi700", host)) {
124 dev_set_drvdata(&dev->dev, host);
125 scsi_scan_host(host);
130 scsi_host_put(host);
140 struct Scsi_Host *host = dev_get_drvdata(&dev->dev);
142 (struct NCR_700_Host_Parameters *)host->hostdata[0];
144 scsi_remove_host(host);
145 NCR_700_release(host);
146 free_irq(host->irq, host);