Lines Matching refs:rscr
74 struct resource rscr; member
317 struct resource *iomem, *rscr; in t7l66xb_probe() local
355 rscr = &t7l66xb->rscr; in t7l66xb_probe()
356 rscr->name = "t7l66xb-core"; in t7l66xb_probe()
357 rscr->start = iomem->start; in t7l66xb_probe()
358 rscr->end = iomem->start + 0xff; in t7l66xb_probe()
359 rscr->flags = IORESOURCE_MEM; in t7l66xb_probe()
361 ret = request_resource(iomem, rscr); in t7l66xb_probe()
365 t7l66xb->scr = ioremap(rscr->start, resource_size(rscr)); in t7l66xb_probe()
402 release_resource(&t7l66xb->rscr); in t7l66xb_probe()
426 release_resource(&t7l66xb->rscr); in t7l66xb_remove()