diff options
author | Simon Glass | 2023-07-12 09:04:32 -0600 |
---|---|---|
committer | Bin Meng | 2023-07-16 23:13:17 +0800 |
commit | 4de979f6646d05d13572ecd2b652f0358dfa5de6 (patch) | |
tree | 72c69e233ff155baee85766856947d2398962e8f /include/bootflow.h | |
parent | 3c2e531cb8f19841cb734c18623832c73d16c26b (diff) |
bootstd: Use bootdev instead of bootdevice
It seems better to call this a 'bootdev' since this is name used in the
documentation. The older 'Bootdevice' name is no-longer used and may cause
confusion with the 'bootdevice' environment variable.
Update throughout to use bootdev.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include/bootflow.h')
-rw-r--r-- | include/bootflow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bootflow.h b/include/bootflow.h index f20f575030f..018d021b810 100644 --- a/include/bootflow.h +++ b/include/bootflow.h @@ -58,7 +58,7 @@ enum bootflow_flags_t { * * @bm_node: Points to siblings in the same bootdev * @glob_node: Points to siblings in the global list (all bootdev) - * @dev: Bootdevice device which produced this bootflow + * @dev: Bootdev device which produced this bootflow * @blk: Block device which contains this bootflow, NULL if this is a network * device or sandbox 'host' device * @part: Partition number (0 for whole device) |