summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2026-06-21 09:27:12 -0600
committerTom Rini <[email protected]>2026-06-21 09:27:12 -0600
commitd57ea0d9edf5e5babffd280f7352f23a33a00948 (patch)
tree8615e41f166b56427a935f499266c425867a0b27 /include
parent922cf29dd8045f7348ce0f20145f46e8235faf21 (diff)
parentad90d1ec8b43aa3d7ec5790db5c5740472e47c96 (diff)
Merge tag 'efi-2026-07-rc6' of https://source.denx.de/u-boot/custodians/u-boot-efi
Pull request efi-2026-07-rc6 CI: https://source.denx.de/u-boot/custodians/u-boot-efi/-/pipelines/30505 Documentation: * bootdev: fix typos * board: renesas: Document Renesas RZ/N1D and RZ/N1S as arm * board: renesas: Document Renesas Geist board support * board: renesas: Document Renesas Gray Hawk board support * board: renesas: Document Renesas Ironhide board support * android: fastboot: Document halt behaviour UEFI: * fix memory leak in efi_var_collect() * set revision field in block IO protocol * fix guid comparison in efi_selftest_loaded_image.c * fix use-after-free in efi_selftest_memory.c
Diffstat (limited to 'include')
-rw-r--r--include/bootdev.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/bootdev.h b/include/bootdev.h
index 12c90c4ec1b..14f8a98633b 100644
--- a/include/bootdev.h
+++ b/include/bootdev.h
@@ -30,10 +30,10 @@ struct udevice;
* generally very quick to access, e.g. less than 100ms
* @BOOTDEVP_3_INTERNAL_SLOW: Internal devices which don't need scanning but
* take a significant fraction of a second to access
- * @BOOTDEVP_4_SCAN_FAST: Extenal devices which need scanning or bus
+ * @BOOTDEVP_4_SCAN_FAST: External devices which need scanning or bus
* enumeration to find, but this enumeration happens quickly, typically under
* 100ms
- * @BOOTDEVP_5_SCAN_SLOW: Extenal devices which need scanning or bus
+ * @BOOTDEVP_5_SCAN_SLOW: External devices which need scanning or bus
* enumeration to find. The enumeration takes significant fraction of a second
* to complete
* @BOOTDEVP_6_NET_BASE: Basic network devices which are quickly and easily
@@ -327,7 +327,7 @@ int bootdev_hunt_and_find_by_label(const char *label, struct udevice **devp,
* Bootdev scanners are used as needed. For example a label "mmc1" results in
* running the "mmc" bootdrv.
*
- * @iter: Interation info, containing iter->cur_label
+ * @iter: Iteration info, containing iter->cur_label
* @devp: New bootdev found, if any was found
* @method_flagsp: If non-NULL, returns any flags implied by the label
* (enum bootflow_meth_flags_t), 0 if none
@@ -342,7 +342,7 @@ int bootdev_next_label(struct bootflow_iter *iter, struct udevice **devp,
* This moves @devp to the next bootdev with the current priority. If there is
* none, then it moves to the next priority and scans for new bootdevs there.
*
- * @iter: Interation info, containing iter->cur_prio
+ * @iter: Iteration info, containing iter->cur_prio
* @devp: On entry this is the previous bootdev that was considered. On exit
* this is the new bootdev, if any was found
* Returns 0 on success (*devp is updated), -ENODEV if there are no more