Lines Matching defs:table
48 * aPCI table
124 char *table;
126 size = ibm_get_table_from_acpi(&table);
129 des = (union apci_descriptor *)table;
133 des = (union apci_descriptor *)&table[ind += des->header.len];
136 des = (union apci_descriptor *)&table[ind += des->generic.len];
148 kfree(table);
206 * from an ACPI call, we read the aPCI table and parse out our
270 * @bufp: address to pointer to allocate for the table
273 * stores the "stripped" table into a single buffer
277 * the size of the table and returns that without filling
280 * Returns < 0 on error or the size of the table on success.
316 pr_debug("%s: element count: %i, ASL table size: %i, &table = 0x%p\n",
353 * our solution is to only allow reading the table in all at once.
360 char *table = NULL;
365 bytes_read = ibm_get_table_from_acpi(&table);
367 memcpy(buffer, table, bytes_read);
368 kfree(table);