Lines Matching refs:rscr
74 struct resource rscr; member
318 struct resource *iomem, *rscr; in t7l66xb_probe() local
356 rscr = &t7l66xb->rscr; in t7l66xb_probe()
357 rscr->name = "t7l66xb-core"; in t7l66xb_probe()
358 rscr->start = iomem->start; in t7l66xb_probe()
359 rscr->end = iomem->start + 0xff; in t7l66xb_probe()
360 rscr->flags = IORESOURCE_MEM; in t7l66xb_probe()
362 ret = request_resource(iomem, rscr); in t7l66xb_probe()
366 t7l66xb->scr = ioremap(rscr->start, resource_size(rscr)); in t7l66xb_probe()
399 release_resource(&t7l66xb->rscr); in t7l66xb_probe()
423 release_resource(&t7l66xb->rscr); in t7l66xb_remove()