Lines Matching refs:obj_desc

185 	union acpi_operand_object *obj_desc;  in acpi_rs_create_pci_routing_table()  local
263 obj_desc = sub_object_list[0]; in acpi_rs_create_pci_routing_table()
264 if (!obj_desc || obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_rs_create_pci_routing_table()
268 acpi_ut_get_object_type_name(obj_desc))); in acpi_rs_create_pci_routing_table()
272 user_prt->address = obj_desc->integer.value; in acpi_rs_create_pci_routing_table()
276 obj_desc = sub_object_list[1]; in acpi_rs_create_pci_routing_table()
277 if (!obj_desc || obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_rs_create_pci_routing_table()
281 acpi_ut_get_object_type_name(obj_desc))); in acpi_rs_create_pci_routing_table()
285 user_prt->pin = (u32) obj_desc->integer.value; in acpi_rs_create_pci_routing_table()
291 obj_desc = sub_object_list[2]; in acpi_rs_create_pci_routing_table()
292 if (obj_desc) { in acpi_rs_create_pci_routing_table()
293 switch (obj_desc->common.type) { in acpi_rs_create_pci_routing_table()
296 if (obj_desc->reference.class != in acpi_rs_create_pci_routing_table()
301 obj_desc->reference.class)); in acpi_rs_create_pci_routing_table()
305 node = obj_desc->reference.node; in acpi_rs_create_pci_routing_table()
328 obj_desc->string.pointer); in acpi_rs_create_pci_routing_table()
334 user_prt->length += obj_desc->string.length + 1; in acpi_rs_create_pci_routing_table()
353 (obj_desc))); in acpi_rs_create_pci_routing_table()
365 obj_desc = sub_object_list[3]; in acpi_rs_create_pci_routing_table()
366 if (!obj_desc || obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_rs_create_pci_routing_table()
370 acpi_ut_get_object_type_name(obj_desc))); in acpi_rs_create_pci_routing_table()
374 user_prt->source_index = (u32) obj_desc->integer.value; in acpi_rs_create_pci_routing_table()