Lines Matching refs:z
200 static int a2091_probe(struct zorro_dev *z, const struct zorro_device_id *ent) in a2091_probe() argument
208 if (dma_set_mask_and_coherent(&z->dev, DMA_BIT_MASK(24))) { in a2091_probe()
209 dev_warn(&z->dev, "cannot use 24 bit DMA\n"); in a2091_probe()
213 if (!request_mem_region(z->resource.start, 256, "wd33c93")) in a2091_probe()
224 instance->unique_id = z->slotaddr; in a2091_probe()
226 regs = ZTWO_VADDR(z->resource.start); in a2091_probe()
233 hdata->dev = &z->dev; in a2091_probe()
251 zorro_set_drvdata(z, instance); in a2091_probe()
261 release_mem_region(z->resource.start, 256); in a2091_probe()
265 static void a2091_remove(struct zorro_dev *z) in a2091_remove() argument
267 struct Scsi_Host *instance = zorro_get_drvdata(z); in a2091_remove()
274 release_mem_region(z->resource.start, 256); in a2091_remove()