Lines Matching defs:table
56 * header - Input ACPI table header
60 * DESCRIPTION: Copy the table header and ensure that all "string" fields in
87 * DESCRIPTION: Print an ACPI table header. Special cases for FACS and RSDP.
123 /* Standard ACPI table with full common header */
142 * PARAMETERS: table - ACPI table to verify
143 * length - Length of entire table
147 * DESCRIPTION: Verifies that the table checksums to zero. Optionally returns
152 acpi_status acpi_tb_verify_checksum(struct acpi_table_header *table, u32 length)
161 if (ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_S3PT) ||
162 ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_FACS)) {
166 /* Compute the checksum on the table */
168 checksum = acpi_tb_checksum(ACPI_CAST_PTR(u8, table), length);
174 "Incorrect checksum in table [%4.4s] - 0x%2.2X, "
176 table->signature, table->checksum,
177 (u8)(table->checksum - checksum)));