Home | History | Annotate | Download | only in sysdump

Lines Matching refs:xsdt

200     const struct acpi_xsdt *xsdt;
210 xsdt = (const struct acpi_xsdt *)(size_t)rsdp->xsdt_addr;
212 if (memcmp(xsdt->hdr.sig, "XSDT", 4) || is_valid_table(xsdt) > ERR_CSUM)
215 dump_table(be, xsdt->hdr.sig, xsdt, xsdt->hdr.len);
217 if (xsdt->hdr.len < 36)
220 n = (xsdt->hdr.len - 36) >> 3;
224 if (addr_ok(xsdt->entry[i])) {
225 hdr = (const struct acpi_hdr *)(size_t)(xsdt->entry[i]);