diff options
| author | Tom Rini <[email protected]> | 2024-01-21 09:11:33 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-01-21 09:11:33 -0500 |
| commit | 22aeab2d969b0d745104311cd0f968be85c38eb5 (patch) | |
| tree | 28b304123b9836b17e7e3d22fe0f921d8dcb5963 /include | |
| parent | 3c04fcf3137d5f694d52b8f355373e4baabe5f78 (diff) | |
| parent | 2c98f7435cc5edb2a0b96e9f398c0b7f084e83cd (diff) | |
Merge tag 'efi-2024-04-rc1-3' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2024-04-rc1-3
Documentation:
* correct documentation of part_get_bootable()
* remove duplicate word "has" in UEFI documentation
UEFI:
* rename check_disk_has_default_file function
* auto-generate boot option for each blkio device
* auto-generate removable media boot option first
* avoid pointer access after calling efi_delete_handle
* create common function to free struct efi_disk_obj
* return immediately in UCLASS_EFI_LOADER removal
Diffstat (limited to 'include')
| -rw-r--r-- | include/part.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/part.h b/include/part.h index db34bc6bb7d..32ee4048856 100644 --- a/include/part.h +++ b/include/part.h @@ -685,8 +685,8 @@ int part_get_type_by_name(const char *name); /** * part_get_bootable() - Find the first bootable partition * - * @desc: Block-device descriptor - * @return first bootable partition, or 0 if there is none + * @desc: Block-device descriptor + * Return: first bootable partition, or 0 if there is none */ int part_get_bootable(struct blk_desc *desc); |
