diff options
author | Simon Glass | 2024-07-17 09:31:03 +0100 |
---|---|---|
committer | Heinrich Schuchardt | 2024-07-19 14:01:42 +0200 |
commit | 6b387c9396f8df431e58d7e75bbd7ea9fd0043ca (patch) | |
tree | 4c1342dc4aa7765c51579459ec614eae0b03f7de | |
parent | 1c930686ca09f79f7bbf86389a96406588db7ae3 (diff) |
boot: Correct indentation in efi bootmeth
Fix a minor indentation / whitespace problem in a comment.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <xypron.glkp@gmx.de>
Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de>
Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
-rw-r--r-- | boot/bootmeth_efi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/bootmeth_efi.c b/boot/bootmeth_efi.c index 56a6e47f5b2..39232eb2e25 100644 --- a/boot/bootmeth_efi.c +++ b/boot/bootmeth_efi.c @@ -265,7 +265,7 @@ static int distro_efi_read_bootflow_net(struct bootflow *bflow) return log_msg_ret("sz", -EINVAL); bflow->size = size; - /* bootfile should be setup by dhcp*/ + /* bootfile should be setup by dhcp */ bootfile_name = env_get("bootfile"); if (!bootfile_name) return log_msg_ret("bootfile_name", ret); |