summaryrefslogtreecommitdiff
path: root/boot/bootmeth_distro.c
diff options
context:
space:
mode:
authorDario Binacchi <dario.binacchi@amarulasolutions.com>2022-08-26 16:15:41 +0300
committerSimon Glass <sjg@chromium.org>2022-08-27 01:33:48 +0300
commitc2ee5ee7b3393770dbe809ca36814083feffaf83 (patch)
tree38fa979e9cec4017c2bf02d1f00e625b6e79f954 /boot/bootmeth_distro.c
parent2d74226f2c6ed5b758c97865bef7e42c9f389437 (diff)
downloadu-boot-c2ee5ee7b3393770dbe809ca36814083feffaf83.tar.xz
Rename disto_[pxe_]getfile to distro_[pxe_]getfile
Replace 'disto' with 'distro' since they are all functions about distro booting. Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
Diffstat (limited to 'boot/bootmeth_distro.c')
-rw-r--r--boot/bootmeth_distro.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/bootmeth_distro.c b/boot/bootmeth_distro.c
index fea09b2c2f..5c6c687f0a 100644
--- a/boot/bootmeth_distro.c
+++ b/boot/bootmeth_distro.c
@@ -35,8 +35,8 @@ static int distro_get_state_desc(struct udevice *dev, char *buf, int maxsize)
return 0;
}
-static int disto_getfile(struct pxe_context *ctx, const char *file_path,
- char *file_addr, ulong *sizep)
+static int distro_getfile(struct pxe_context *ctx, const char *file_path,
+ char *file_addr, ulong *sizep)
{
struct distro_info *info = ctx->userdata;
ulong addr;
@@ -113,7 +113,7 @@ static int distro_boot(struct udevice *dev, struct bootflow *bflow)
addr = map_to_sysmem(bflow->buf);
info.dev = dev;
info.bflow = bflow;
- ret = pxe_setup_ctx(&ctx, &cmdtp, disto_getfile, &info, true,
+ ret = pxe_setup_ctx(&ctx, &cmdtp, distro_getfile, &info, true,
bflow->subdir);
if (ret)
return log_msg_ret("ctx", -EINVAL);