Lines Matching refs:rscr
29 struct resource rscr; member
144 struct resource *iomem, *rscr; in tc6387xb_probe() local
169 rscr = &tc6387xb->rscr; in tc6387xb_probe()
170 rscr->name = "tc6387xb-core"; in tc6387xb_probe()
171 rscr->start = iomem->start; in tc6387xb_probe()
172 rscr->end = iomem->start + 0xff; in tc6387xb_probe()
173 rscr->flags = IORESOURCE_MEM; in tc6387xb_probe()
175 ret = request_resource(iomem, rscr); in tc6387xb_probe()
179 tc6387xb->scr = ioremap(rscr->start, resource_size(rscr)); in tc6387xb_probe()
201 release_resource(&tc6387xb->rscr); in tc6387xb_probe()
216 release_resource(&tc6387xb->rscr); in tc6387xb_remove()