Lines Matching defs:systab
90 efi_system_table_t *systab;
94 systab = early_memremap_ro(efi_system_table, sizeof(efi_system_table_t));
95 if (systab == NULL) {
104 retval = efi_systab_check_header(&systab->hdr, 2);
108 efi.runtime = systab->runtime;
109 efi.runtime_version = systab->hdr.revision;
111 efi_systab_report_header(&systab->hdr, efi_to_phys(systab->fw_vendor));
113 table_size = sizeof(efi_config_table_t) * systab->nr_tables;
114 config_tables = early_memremap_ro(efi_to_phys(systab->tables),
121 retval = efi_config_parse_tables(config_tables, systab->nr_tables,
127 early_memunmap(systab, sizeof(efi_system_table_t));