summaryrefslogtreecommitdiff
path: root/boot/bootstd-uclass.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-04-25 08:31:09 +0300
committerTom Rini <trini@konsulko.com>2022-04-25 17:00:04 +0300
commita8f5be178db53f41338730e001b0f2ab459f7e31 (patch)
tree02cd04356491fa7bb7c036a0851a286550abd668 /boot/bootstd-uclass.c
parenta950d31abe980ba40a0a94fbf41136550187f8cd (diff)
downloadu-boot-a8f5be178db53f41338730e001b0f2ab459f7e31.tar.xz
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 <sjg@chromium.org>
Diffstat (limited to 'boot/bootstd-uclass.c')
-rw-r--r--boot/bootstd-uclass.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootstd-uclass.c b/boot/bootstd-uclass.c
index 4c71c2829e..266bd7cb2e 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);
}
}