Lines Matching refs:rscr
74 struct resource rscr; member
310 struct resource *iomem, *rscr; in t7l66xb_probe() local
348 rscr = &t7l66xb->rscr; in t7l66xb_probe()
349 rscr->name = "t7l66xb-core"; in t7l66xb_probe()
350 rscr->start = iomem->start; in t7l66xb_probe()
351 rscr->end = iomem->start + 0xff; in t7l66xb_probe()
352 rscr->flags = IORESOURCE_MEM; in t7l66xb_probe()
354 ret = request_resource(iomem, rscr); in t7l66xb_probe()
358 t7l66xb->scr = ioremap(rscr->start, resource_size(rscr)); in t7l66xb_probe()
391 release_resource(&t7l66xb->rscr); in t7l66xb_probe()
415 release_resource(&t7l66xb->rscr); in t7l66xb_remove()