Lines Matching defs:host
90 struct Scsi_Host *host;
94 dev_printk(KERN_ERR, &dev->dev, "Failed to allocate host data\n");
114 host = NCR_700_detect(&lasi700_template, hostdata, &dev->dev);
115 if (!host)
117 host->this_id = 7;
118 host->base = base;
119 host->irq = dev->irq;
120 if(request_irq(dev->irq, NCR_700_intr, IRQF_SHARED, "lasi700", host)) {
125 dev_set_drvdata(&dev->dev, host);
126 scsi_scan_host(host);
131 scsi_host_put(host);
141 struct Scsi_Host *host = dev_get_drvdata(&dev->dev);
143 (struct NCR_700_Host_Parameters *)host->hostdata[0];
145 scsi_remove_host(host);
146 NCR_700_release(host);
147 free_irq(host->irq, host);