diff options
| author | Simon Glass <sjg@chromium.org> | 2024-11-15 16:19:08 -0700 |
|---|---|---|
| committer | Tom Rini <trini@konsulko.com> | 2025-01-15 08:48:42 -0600 |
| commit | 47903aacc520c96bafae1225484e5df740a233e6 (patch) | |
| tree | fe9254137a999ee7bc3fb6d46c31e480a22eee92 /cmd | |
| parent | 5907c81647055a03580dae850f82d85f7d810f7e (diff) | |
bootstd: Move bootflow-adding to bootstd
This relates to more than just the bootdev, since there is a global list
of bootflows. Move the function to the bootstd file and rename it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/bootflow.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/bootflow.c b/cmd/bootflow.c index f67948d7368..8962464bbf8 100644 --- a/cmd/bootflow.c +++ b/cmd/bootflow.c @@ -207,7 +207,7 @@ static int do_bootflow_scan(struct cmd_tbl *cmdtp, int flag, int argc, bflow.err = ret; if (!ret) num_valid++; - ret = bootdev_add_bootflow(&bflow); + ret = bootstd_add_bootflow(&bflow); if (ret) { printf("Out of memory\n"); return CMD_RET_FAILURE; |
