diff options
| author | Simon Glass <[email protected]> | 2024-11-15 16:19:11 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-01-15 08:48:42 -0600 |
| commit | 6a3eb84b18333eb4beb7e660fa9ae8ccff07b0c4 (patch) | |
| tree | b249db2403152ebb44f6b29b57752b392671a61b /include/bootstd.h | |
| parent | 529f92677defa4788ef0d43229caa5771be041a0 (diff) | |
bootstd: Drop the bootdev-specific list of bootflows
This list is only used by two functions, which can be updated to iterate
through the global list. Take this approach, which allows the bootdev
list to be dropped.
Overall this makes the code slightly more complicated, but will allow
moving the bootflow list into an alist
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include/bootstd.h')
| -rw-r--r-- | include/bootstd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bootstd.h b/include/bootstd.h index 4535d91e2ad..8aff536e3cb 100644 --- a/include/bootstd.h +++ b/include/bootstd.h @@ -123,7 +123,7 @@ void bootstd_clear_glob(void); int bootstd_prog_boot(void); /** - * bootstd_add_bootflow() - Add a bootflow to the bootdev's and global list + * bootstd_add_bootflow() - Add a bootflow to the global list * * All fields in @bflow must be set up. Note that @bflow->dev is used to add the * bootflow to that device. |
