Lines Matching refs:host
39 struct Scsi_Host * host = NULL; in mvme16x_probe() local
67 host = NCR_700_detect(&mvme16x_scsi_driver_template, hostdata, in mvme16x_probe()
69 if (!host) { in mvme16x_probe()
74 host->this_id = 7; in mvme16x_probe()
75 host->base = 0xfff47000UL; in mvme16x_probe()
76 host->irq = MVME16x_IRQ_SCSI; in mvme16x_probe()
77 if (request_irq(host->irq, NCR_700_intr, 0, "mvme16x-scsi", host)) { in mvme16x_probe()
92 platform_set_drvdata(dev, host); in mvme16x_probe()
93 scsi_scan_host(host); in mvme16x_probe()
98 scsi_host_put(host); in mvme16x_probe()
107 struct Scsi_Host *host = platform_get_drvdata(dev); in mvme16x_device_remove() local
108 struct NCR_700_Host_Parameters *hostdata = shost_priv(host); in mvme16x_device_remove()
118 scsi_remove_host(host); in mvme16x_device_remove()
119 NCR_700_release(host); in mvme16x_device_remove()
121 free_irq(host->irq, host); in mvme16x_device_remove()