Lines Matching refs:obj_desc
220 union acpi_operand_object *obj_desc; in acpi_rs_create_pci_routing_table() local
297 obj_desc = sub_object_list[0]; in acpi_rs_create_pci_routing_table()
298 if (!obj_desc || obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_rs_create_pci_routing_table()
302 acpi_ut_get_object_type_name(obj_desc))); in acpi_rs_create_pci_routing_table()
306 user_prt->address = obj_desc->integer.value; in acpi_rs_create_pci_routing_table()
310 obj_desc = sub_object_list[1]; in acpi_rs_create_pci_routing_table()
311 if (!obj_desc || obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_rs_create_pci_routing_table()
315 acpi_ut_get_object_type_name(obj_desc))); in acpi_rs_create_pci_routing_table()
319 user_prt->pin = (u32) obj_desc->integer.value; in acpi_rs_create_pci_routing_table()
325 obj_desc = sub_object_list[2]; in acpi_rs_create_pci_routing_table()
326 if (obj_desc) { in acpi_rs_create_pci_routing_table()
327 switch (obj_desc->common.type) { in acpi_rs_create_pci_routing_table()
330 if (obj_desc->reference.class != in acpi_rs_create_pci_routing_table()
335 obj_desc->reference.class)); in acpi_rs_create_pci_routing_table()
339 node = obj_desc->reference.node; in acpi_rs_create_pci_routing_table()
362 obj_desc->string.pointer); in acpi_rs_create_pci_routing_table()
368 user_prt->length += obj_desc->string.length + 1; in acpi_rs_create_pci_routing_table()
387 (obj_desc))); in acpi_rs_create_pci_routing_table()
399 obj_desc = sub_object_list[3]; in acpi_rs_create_pci_routing_table()
400 if (!obj_desc || obj_desc->common.type != ACPI_TYPE_INTEGER) { in acpi_rs_create_pci_routing_table()
404 acpi_ut_get_object_type_name(obj_desc))); in acpi_rs_create_pci_routing_table()
408 user_prt->source_index = (u32) obj_desc->integer.value; in acpi_rs_create_pci_routing_table()