diff options
author | Michal Simek | 2020-11-23 09:08:19 +0100 |
---|---|---|
committer | Simon Glass | 2020-11-30 13:14:43 -0700 |
commit | a9e73d287bfd6bfc778c532128a20767ee305193 (patch) | |
tree | 0910677b7fffedb8afb21465a756cc7fcaae2c67 | |
parent | e7e7e1093b5243b058c420eaebf9373cf2d3f270 (diff) |
binman: Remove additional backslash
The origin patch didn't have this change and it was caused by manual
resolution where additional backslash was added.
Fixes: 6723b4c6ca7b ("binman: Call helper function binman_set_rom_offset() to fill offset")
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | lib/binman.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/binman.c b/lib/binman.c index d395b1cf70b..f027d1b3042 100644 --- a/lib/binman.c +++ b/lib/binman.c @@ -104,6 +104,6 @@ int binman_init(void) binman->image = node; } binman_set_rom_offset(ROM_OFFSET_NONE); -\ + return 0; } |