Lines Matching refs:rscr
25 struct resource rscr; member
136 struct resource *iomem, *rscr; in tc6387xb_probe() local
161 rscr = &tc6387xb->rscr; in tc6387xb_probe()
162 rscr->name = "tc6387xb-core"; in tc6387xb_probe()
163 rscr->start = iomem->start; in tc6387xb_probe()
164 rscr->end = iomem->start + 0xff; in tc6387xb_probe()
165 rscr->flags = IORESOURCE_MEM; in tc6387xb_probe()
167 ret = request_resource(iomem, rscr); in tc6387xb_probe()
171 tc6387xb->scr = ioremap(rscr->start, resource_size(rscr)); in tc6387xb_probe()
193 release_resource(&tc6387xb->rscr); in tc6387xb_probe()
208 release_resource(&tc6387xb->rscr); in tc6387xb_remove()