Lines Matching refs:list
229 * primary side. Non-bridge devices must list 0 for all Address
622 * @list: The head of the resource list to free.
624 void acpi_dev_free_resource_list(struct list_head *list)
626 resource_list_free(list);
631 struct list_head *list;
650 resource_list_add_tail(rentry, c->list);
695 struct list_head *list,
702 if (!adev || !adev->handle || !list_empty(list))
708 c.list = list;
716 acpi_dev_free_resource_list(list);
726 * @list: Head of the resultant list of resources (must be empty).
739 * The resultant struct resource objects are put on the list pointed to by
740 * @list, that must be empty initially, as members of struct resource_entry
742 * free that list.
744 * The number of resources in the output list is returned on success, an error
747 int acpi_dev_get_resources(struct acpi_device *adev, struct list_head *list,
751 return __acpi_dev_get_resources(adev, list, preproc, preproc_data,
771 * @list: Head of the resultant list of resources (must be empty).
776 * The resultant struct resource objects are put on the list pointed to
777 * by @list, that must be empty initially, as members of struct
779 * %acpi_dev_free_resource_list() to free that list.
781 * The number of resources in the output list is returned on success,
784 int acpi_dev_get_dma_resources(struct acpi_device *adev, struct list_head *list)
786 return __acpi_dev_get_resources(adev, list, is_memory, NULL,