diff options
| author | Simon Glass <[email protected]> | 2022-04-24 23:31:09 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-04-25 10:00:04 -0400 |
| commit | a8f5be178db53f41338730e001b0f2ab459f7e31 (patch) | |
| tree | 02cd04356491fa7bb7c036a0851a286550abd668 /boot/bootstd-uclass.c | |
| parent | a950d31abe980ba40a0a94fbf41136550187f8cd (diff) | |
bootstd: Add support for bootflows
Add support for bootflows, including maintaining a list of them and
iterating to find them.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'boot/bootstd-uclass.c')
| -rw-r--r-- | boot/bootstd-uclass.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootstd-uclass.c b/boot/bootstd-uclass.c index 4c71c2829ef..266bd7cb2e3 100644 --- a/boot/bootstd-uclass.c +++ b/boot/bootstd-uclass.c @@ -45,7 +45,7 @@ static void bootstd_clear_glob_(struct bootstd_priv *priv) bflow = list_first_entry(&priv->glob_head, struct bootflow, glob_node); - /* add later bootflow_remove(bflow); */ + bootflow_remove(bflow); } } |
