Home
last modified time | relevance | path

Searched refs:rentry (Results 1 – 4 of 4) sorted by relevance

/drivers/dma/
Dacpi-dma.c48 struct resource_entry *rentry; in acpi_dma_parse_resource_group() local
60 list_for_each_entry(rentry, &resource_list, node) { in acpi_dma_parse_resource_group()
61 if (resource_type(rentry->res) == IORESOURCE_MEM) in acpi_dma_parse_resource_group()
62 mem = rentry->res->start; in acpi_dma_parse_resource_group()
63 else if (resource_type(rentry->res) == IORESOURCE_IRQ) in acpi_dma_parse_resource_group()
64 irq = rentry->res->start; in acpi_dma_parse_resource_group()
/drivers/acpi/
Dacpi_platform.c51 struct resource_entry *rentry; in acpi_create_platform_device() local
76 list_for_each_entry(rentry, &resource_list, node) in acpi_create_platform_device()
77 resources[count++] = *rentry->res; in acpi_create_platform_device()
Dresource.c481 struct resource_entry *rentry; in acpi_dev_new_resource_entry() local
483 rentry = resource_list_create_entry(NULL, 0); in acpi_dev_new_resource_entry()
484 if (!rentry) { in acpi_dev_new_resource_entry()
488 *rentry->res = win->res; in acpi_dev_new_resource_entry()
489 rentry->offset = win->offset; in acpi_dev_new_resource_entry()
490 resource_list_add_tail(rentry, c->list); in acpi_dev_new_resource_entry()
Dacpi_lpss.c352 struct resource_entry *rentry; in acpi_lpss_create_device() local
371 list_for_each_entry(rentry, &resource_list, node) in acpi_lpss_create_device()
372 if (resource_type(rentry->res) == IORESOURCE_MEM) { in acpi_lpss_create_device()
376 pdata->mmio_size = resource_size(rentry->res); in acpi_lpss_create_device()
377 pdata->mmio_base = ioremap(rentry->res->start, in acpi_lpss_create_device()