Lines Matching defs:hostdata
79 struct NCR_700_Host_Parameters *hostdata;
98 hostdata = kzalloc(sizeof(struct NCR_700_Host_Parameters), GFP_KERNEL);
99 if (!hostdata) {
104 /* Fill in the required pieces of hostdata */
106 hostdata->base = ioremap(ioaddr, zorro_resource_len(z));
108 hostdata->base = ZTWO_VADDR(ioaddr);
110 hostdata->clock = 50;
111 hostdata->chip710 = 1;
114 hostdata->ctest7_extra = CTEST7_TT1;
119 host = NCR_700_detect(&zorro7xx_scsi_driver_template, hostdata,
146 iounmap(hostdata->base);
147 kfree(hostdata);
157 struct NCR_700_Host_Parameters *hostdata = shost_priv(host);
163 iounmap(hostdata->base);
164 kfree(hostdata);