Lines Matching defs:systab
84 efi_system_table_t *systab;
88 systab = early_memremap_ro(efi_system_table, sizeof(efi_system_table_t));
89 if (systab == NULL) {
98 retval = efi_systab_check_header(&systab->hdr);
102 efi.runtime = systab->runtime;
103 efi.runtime_version = systab->hdr.revision;
105 efi_systab_report_header(&systab->hdr, efi_to_phys(systab->fw_vendor));
107 table_size = sizeof(efi_config_table_t) * systab->nr_tables;
108 config_tables = early_memremap_ro(efi_to_phys(systab->tables),
115 retval = efi_config_parse_tables(config_tables, systab->nr_tables,
120 early_memunmap(systab, sizeof(efi_system_table_t));