diff options
| author | Tom Rini <[email protected]> | 2025-11-22 10:34:03 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-22 10:34:03 -0600 |
| commit | 6e7d2399c8139f8e2d037e446236b8d8bdbca604 (patch) | |
| tree | 8a3be782b836f8eb5b6c6143f5cdc1e011857fda /include | |
| parent | 8ff90aa64b730c3f511921d4ff79e9f64e625867 (diff) | |
| parent | e81750779ac031a0d9f69487f0295fb0732ba496 (diff) | |
Merge tag 'efi-next-2025-11-25' of https://source.denx.de/u-boot/custodians/u-boot-efi into next
Pull request efi-next-2025-11-25
CI: https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/28455
UEFI:
* In UEFI selftests expose the runtime address as a global variable and
use it to simplify some of the tests
Diffstat (limited to 'include')
| -rw-r--r-- | include/efi_selftest.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/efi_selftest.h b/include/efi_selftest.h index 1b708849bcb..874f8b5efe7 100644 --- a/include/efi_selftest.h +++ b/include/efi_selftest.h @@ -19,6 +19,7 @@ extern const struct efi_system_table *st_systable; extern const struct efi_boot_services *st_boottime; +extern const struct efi_runtime_services *st_runtime; /** * efi_st_printf() - print a message @@ -150,13 +151,11 @@ u16 efi_st_get_key(void); /** * efi_st_query_variable_common - Common variable tests for boottime/runtime * - * @runtime: Pointer to services table * @attributes: Attributes used * * Return: EFI_ST_SUCCESS/FAILURE */ -int efi_st_query_variable_common(struct efi_runtime_services *runtime, - u32 attributes); +int efi_st_query_variable_common(u32 attributes); /** * struct efi_unit_test - EFI unit test |
