Lines Matching defs:table
70 * For example, the "MCFG" table is defined by PCI, reserved by ACPI,
122 /* Only call the get_table to keep the table mapped */
142 static void sfi_acpi_put_table(struct acpi_table_header *table)
144 sfi_put_table(acpi_to_sfi_th(table));
150 * Find specified table in XSDT, run handler on it and return its return value
155 struct acpi_table_header *table = NULL;
166 table = sfi_acpi_get_table(&key);
167 if (!table)
170 ret = handler(table);
171 sfi_acpi_put_table(table);