Lines Matching refs:res
45 if (window->res->flags & IORESOURCE_BUS) { in x86_pci_root_bus_resources()
54 pci_add_resource(resources, &root_res->res); in x86_pci_root_bus_resources()
97 struct resource *res; in update_res() local
114 res = &root_res->res; in update_res()
115 if (res->flags != flags) in update_res()
118 common_start = max(res->start, start); in update_res()
119 common_end = min(res->end, end); in update_res()
123 final_start = min(res->start, start); in update_res()
124 final_end = max(res->end, end); in update_res()
126 res->start = final_start; in update_res()
127 res->end = final_end; in update_res()
138 res = &root_res->res; in update_res()
139 res->name = info->name; in update_res()
140 res->flags = flags; in update_res()
141 res->start = start; in update_res()
142 res->end = end; in update_res()