Lines Matching refs:rscr
63 struct resource rscr; member
302 struct resource *iomem, *rscr; in t7l66xb_probe() local
340 rscr = &t7l66xb->rscr; in t7l66xb_probe()
341 rscr->name = "t7l66xb-core"; in t7l66xb_probe()
342 rscr->start = iomem->start; in t7l66xb_probe()
343 rscr->end = iomem->start + 0xff; in t7l66xb_probe()
344 rscr->flags = IORESOURCE_MEM; in t7l66xb_probe()
346 ret = request_resource(iomem, rscr); in t7l66xb_probe()
350 t7l66xb->scr = ioremap(rscr->start, resource_size(rscr)); in t7l66xb_probe()
387 release_resource(&t7l66xb->rscr); in t7l66xb_probe()
411 release_resource(&t7l66xb->rscr); in t7l66xb_remove()