efi.c (8be98d2f2a0a262f8bf8a0bc1fdf522b3c7aab17) | efi.c (234fa51db95f3236a049557db735606908747f38) |
---|---|
1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Extensible Firmware Interface 4 * 5 * Based on Extensible Firmware Interface Specification version 0.9 6 * April 30, 1999 7 * 8 * Copyright (C) 1999 VA Linux Systems --- 511 unchanged lines hidden (view full) --- 520 521 efi_systab = __va(ia64_boot_param->efi_systab); 522 523 /* 524 * Verify the EFI Table 525 */ 526 if (efi_systab == NULL) 527 panic("Whoa! Can't find EFI system table.\n"); | 1// SPDX-License-Identifier: GPL-2.0 2/* 3 * Extensible Firmware Interface 4 * 5 * Based on Extensible Firmware Interface Specification version 0.9 6 * April 30, 1999 7 * 8 * Copyright (C) 1999 VA Linux Systems --- 511 unchanged lines hidden (view full) --- 520 521 efi_systab = __va(ia64_boot_param->efi_systab); 522 523 /* 524 * Verify the EFI Table 525 */ 526 if (efi_systab == NULL) 527 panic("Whoa! Can't find EFI system table.\n"); |
528 if (efi_systab_check_header(&efi_systab->hdr, 1)) | 528 if (efi_systab_check_header(&efi_systab->hdr)) |
529 panic("Whoa! EFI system table signature incorrect\n"); 530 531 efi_systab_report_header(&efi_systab->hdr, efi_systab->fw_vendor); 532 533 palo_phys = EFI_INVALID_TABLE_ADDR; 534 535 if (efi_config_parse_tables(__va(efi_systab->tables), 536 efi_systab->nr_tables, --- 824 unchanged lines hidden --- | 529 panic("Whoa! EFI system table signature incorrect\n"); 530 531 efi_systab_report_header(&efi_systab->hdr, efi_systab->fw_vendor); 532 533 palo_phys = EFI_INVALID_TABLE_ADDR; 534 535 if (efi_config_parse_tables(__va(efi_systab->tables), 536 efi_systab->nr_tables, --- 824 unchanged lines hidden --- |