diff options
author | Simon Glass <sjg@chromium.org> | 2024-12-01 07:42:34 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-02 07:40:30 -0600 |
commit | 03e57244bc260da9b9839d387cc5eb691f88b5bd (patch) | |
tree | 6a741d1242c78dd159f205f6d8f3e9b87fde32cb /lib/binman.c | |
parent | 12fcb9825758a6ad84a22999eaaaa4a0c6a8ff94 (diff) |
binman: Avoid skipping binman_init()
A recent lwip change stopped binman's init from working, so it is not
possible to read nodes from the image description anymore.
Correct this by dropping the offending line.
Signed-off-by: Simon Glass <sjg@chromium.org>
Fixes: 4d4d7838127 net: lwip: add TFTP support and tftpboot command
Diffstat (limited to 'lib/binman.c')
-rw-r--r-- | lib/binman.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/binman.c b/lib/binman.c index 93d85548116..9047f5275f3 100644 --- a/lib/binman.c +++ b/lib/binman.c @@ -137,7 +137,6 @@ int binman_init(void) { int ret; - return 0; binman = malloc(sizeof(struct binman_info)); if (!binman) return log_msg_ret("space for binman", -ENOMEM); |