diff options
author | Tom Rini <trini@konsulko.com> | 2022-08-27 08:07:09 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-27 08:07:09 -0400 |
commit | 1573b6a86993fcf80d4badc866a46b78df7e6bda (patch) | |
tree | d56567f58fac5b9cd1578df9e0bd5a8982a27235 /boot/bootmeth_pxe.c | |
parent | cd3872ce7e5bf90424a10eda0fe405d04e82adb9 (diff) | |
parent | c2ee5ee7b3393770dbe809ca36814083feffaf83 (diff) |
Merge tag 'dm-pull-26aug22' of https://source.denx.de/u-boot/custodians/u-boot-dm
binman/patman documentation improvements
other minor fixes
Diffstat (limited to 'boot/bootmeth_pxe.c')
-rw-r--r-- | boot/bootmeth_pxe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/boot/bootmeth_pxe.c b/boot/bootmeth_pxe.c index f1e2b4c776..e6992168c0 100644 --- a/boot/bootmeth_pxe.c +++ b/boot/bootmeth_pxe.c @@ -23,8 +23,8 @@ #include <net.h> #include <pxe_utils.h> -static int disto_pxe_getfile(struct pxe_context *ctx, const char *file_path, - char *file_addr, ulong *sizep) +static int distro_pxe_getfile(struct pxe_context *ctx, const char *file_path, + char *file_addr, ulong *sizep) { struct distro_info *info = ctx->userdata; ulong addr; @@ -142,7 +142,7 @@ static int distro_pxe_boot(struct udevice *dev, struct bootflow *bflow) info.dev = dev; info.bflow = bflow; info.cmdtp = &cmdtp; - ret = pxe_setup_ctx(ctx, &cmdtp, disto_pxe_getfile, &info, false, + ret = pxe_setup_ctx(ctx, &cmdtp, distro_pxe_getfile, &info, false, bflow->subdir); if (ret) return log_msg_ret("ctx", -EINVAL); |