diff options
author | Tom Rini <trini@konsulko.com> | 2022-12-31 16:30:31 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-12-31 16:30:31 -0500 |
commit | 3aa14d76182dbbaf9fed4deeaf362f083b9d2f5b (patch) | |
tree | 9a4c733db8ec3b99444a5ff9177aeb709459ad07 /drivers | |
parent | 3e4cbe184a0f6537abb457d6afa61224396c4e46 (diff) | |
parent | bcc85b96b5ffbbce19a89747138feb873d918915 (diff) |
Merge branch '2022-12-31-cmd-source-support-specifying-config-name' into next
To quote the author:
This series adds support for using configs with the source command.
And to paraphrase the rest, see the patch commit messages for more
details.
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/usb/gadget/f_sdp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/gadget/f_sdp.c b/drivers/usb/gadget/f_sdp.c index af4b167e17a..5ae5b62741a 100644 --- a/drivers/usb/gadget/f_sdp.c +++ b/drivers/usb/gadget/f_sdp.c @@ -868,7 +868,7 @@ static int sdp_handle_in_ep(struct spl_image_info *spl_image, jump_to_image_no_args(&spl_image); #else /* In U-Boot, allow jumps to scripts */ - image_source_script(sdp_func->jmp_address, "script@1"); + image_source_script(sdp_func->jmp_address, NULL, NULL); #endif } |