diff options
author | Bin Meng | 2023-08-03 17:30:05 +0800 |
---|---|---|
committer | Heinrich Schuchardt | 2023-08-15 18:21:17 +0200 |
commit | 6072703dc9ac52c644fd6d1a80ee16f91bbd0313 (patch) | |
tree | 30dd311bd3d828118dba754f5ffe0b9c41d52874 /boot | |
parent | 5aae021c30940a57862c1ea6a3cf8eeb88ca2c1c (diff) |
bootmeth: efi: Make distro_efi_boot() static
As it is only called in bootmeth_efi.c
Signed-off-by: Bin Meng <bmeng@tinylab.org>
Reviewed-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'boot')
-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 1c9f2b1e2fe..ae936c8daa1 100644 --- a/boot/bootmeth_efi.c +++ b/boot/bootmeth_efi.c @@ -409,7 +409,7 @@ static int distro_efi_read_bootflow(struct udevice *dev, struct bootflow *bflow) return 0; } -int distro_efi_boot(struct udevice *dev, struct bootflow *bflow) +static int distro_efi_boot(struct udevice *dev, struct bootflow *bflow) { ulong kernel, fdt; char cmd[50]; |