Lines Matching refs:rentry
99 struct resource_entry *rentry; in acpi_watchdog_init() local
125 struct resource_entry *rentry; in acpi_watchdog_init() local
145 resource_list_for_each_entry(rentry, &resource_list) { in acpi_watchdog_init()
146 if (rentry->res->flags == res.flags && in acpi_watchdog_init()
147 resource_overlaps(rentry->res, &res)) { in acpi_watchdog_init()
148 if (res.start < rentry->res->start) in acpi_watchdog_init()
149 rentry->res->start = res.start; in acpi_watchdog_init()
150 if (res.end > rentry->res->end) in acpi_watchdog_init()
151 rentry->res->end = res.end; in acpi_watchdog_init()
158 rentry = resource_list_create_entry(NULL, 0); in acpi_watchdog_init()
159 if (!rentry) in acpi_watchdog_init()
162 *rentry->res = res; in acpi_watchdog_init()
163 resource_list_add_tail(rentry, &resource_list); in acpi_watchdog_init()
173 resource_list_for_each_entry(rentry, &resource_list) in acpi_watchdog_init()
174 resources[i++] = *rentry->res; in acpi_watchdog_init()