diff options
author | Tom Rini <trini@konsulko.com> | 2024-10-31 08:33:24 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-10-31 08:33:24 -0600 |
commit | d4c8b8750b564ee83303160414607e17b6873fe2 (patch) | |
tree | 39965f9fb950418d2d1cd08937690e632e14fa50 /lib/efi_loader/smbiosdump.c | |
parent | 89bdd752b91764b65c713c47e87628b5680fb18f (diff) | |
parent | 7596d77bc1b6be838e38af3fb4e73dbd0a0a078e (diff) |
Merge tag 'efi-2025-01-rc2' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2025-01-rc2
Documentation:
* include semihosting and K3 boards only once in table of contents
* include file-system API into HTML docs
* describe struct ext2_inode
* update Python requirements
UEFI:
* mark local functions static
* simplify efi_free_pages()
* pass correct end address value to efi_dp_from_mem()
* fix typos in HII test and eficonfig command
Diffstat (limited to 'lib/efi_loader/smbiosdump.c')
-rw-r--r-- | lib/efi_loader/smbiosdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/efi_loader/smbiosdump.c b/lib/efi_loader/smbiosdump.c index 2f0b91a353d..d7f2ba30a95 100644 --- a/lib/efi_loader/smbiosdump.c +++ b/lib/efi_loader/smbiosdump.c @@ -289,7 +289,7 @@ static void *get_config_table(const efi_guid_t *guid) * @len: length of buffer * Return: checksum */ -u8 checksum(void *buf, int len) +static u8 checksum(void *buf, int len) { u8 ret = 0; @@ -304,7 +304,7 @@ u8 checksum(void *buf, int len) * * Return: status code */ -efi_status_t do_check(void) +static efi_status_t do_check(void) { struct smbios3_entry *smbios3_anchor; void *table, *table_end; @@ -401,7 +401,7 @@ efi_status_t do_check(void) * @buf: buffer to write * @size: size of the buffer */ -efi_status_t save_file(u16 *filename, void *buf, efi_uintn_t size) +static efi_status_t save_file(u16 *filename, void *buf, efi_uintn_t size) { efi_uintn_t ret; struct efi_simple_file_system_protocol *file_system; |