diff options
author | Simon Glass | 2023-02-22 12:17:03 -0700 |
---|---|---|
committer | Simon Glass | 2023-03-08 11:40:49 -0800 |
commit | 4f806f31fc29b30f06bd13abe44a1d3649d480e5 (patch) | |
tree | e4d27f00d1b0815f778e562c8c4524fae442e881 /cmd | |
parent | fe7e9245c53e254526d3bbd6296d658596f41b48 (diff) |
bootflow: Rename bootflow_flags_t
These flags actually relate to the iterator, not the bootflow struct
itself. Rename them.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/bootflow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/bootflow.c b/cmd/bootflow.c index 3548bbb6830..42f6e14a437 100644 --- a/cmd/bootflow.c +++ b/cmd/bootflow.c @@ -135,13 +135,13 @@ static int do_bootflow_scan(struct cmd_tbl *cmdtp, int flag, int argc, flags = 0; if (list) - flags |= BOOTFLOWF_SHOW; + flags |= BOOTFLOWIF_SHOW; if (all) - flags |= BOOTFLOWF_ALL; + flags |= BOOTFLOWIF_ALL; if (no_global) - flags |= BOOTFLOWF_SKIP_GLOBAL; + flags |= BOOTFLOWIF_SKIP_GLOBAL; if (!no_hunter) - flags |= BOOTFLOWF_HUNT; + flags |= BOOTFLOWIF_HUNT; /* * If we have a device, just scan for bootflows attached to that device |