From a9e73d287bfd6bfc778c532128a20767ee305193 Mon Sep 17 00:00:00 2001 From: Michal Simek Date: Mon, 23 Nov 2020 09:08:19 +0100 Subject: [PATCH] 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 Reviewed-by: Simon Glass --- lib/binman.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/binman.c b/lib/binman.c index d395b1cf70..f027d1b304 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; }