Lines Matching defs:table
73 * acpi_parse_spcr() - parse ACPI SPCR table and add preferred console
75 * @enable_earlycon: set up earlycon for the console specified by the table
76 * @enable_console: setup the console specified by the table.
79 * defined to parse ACPI SPCR table. As a result of the parsing preferred
90 struct acpi_table_spcr *table;
101 (struct acpi_table_header **)&table);
106 if (table->header.revision < 2)
107 pr_info("SPCR table version %d\n", table->header.revision);
109 if (table->serial_port.space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
111 table->serial_port.access_width))) {
128 switch (table->interface_type) {
146 switch (table->baud_rate) {
189 if (qdf2400_erratum_44_present(&table->header)) {
195 if (xgene_8250_erratum_present(table)) {
200 * in the table because driver cannot calculate the dividers
207 table->serial_port.address);
210 table->serial_port.address, baud_rate);
223 acpi_put_table((struct acpi_table_header *)table);