diff options
author | Tom Rini <trini@konsulko.com> | 2021-04-10 16:56:59 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2021-04-10 16:56:59 -0400 |
commit | 59e84da0b88e4465f15d196bba59f22c906fa50d (patch) | |
tree | ba62f7bab206bd44dfd516c5689b7d87ab2b064f /include/linker_lists.h | |
parent | 3f2e3c7845df11ca8359a6cc804bfd6eb5ce215b (diff) | |
parent | f8cd72d1ac6aac8cfa48777b5c0681ee2f9e3671 (diff) |
Merge tag 'efi-2021-07-rc1' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request for efi-2021-07-rc1
Bug fixes:
* support EFI, HOST, VIRTIO in fsinfo command
* simplify efi_get_device_path_text()
* add missing EFI_UNACCEPTED_MEMORY_TYPE
* mkeficapsule: improve online help
* avoid several build warnings
Documentation:
* UEFI documentation for initrd loading options
* describe building OP-TEE with for UEFI variables
* mmc man-page
Diffstat (limited to 'include/linker_lists.h')
-rw-r--r-- | include/linker_lists.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linker_lists.h b/include/linker_lists.h index 81a280a8841..2fea54c8343 100644 --- a/include/linker_lists.h +++ b/include/linker_lists.h @@ -219,6 +219,10 @@ * * This is like ll_entry_get(), but without the extra code, so it is suitable * for putting into data structures. + * + * @_type: C type of the list entry, e.g. 'struct foo' + * @_name: name of the entry + * @_list: name of the list */ #define ll_entry_ref(_type, _name, _list) \ ((_type *)&_u_boot_list_2_##_list##_2_##_name) |