From: Lothar Waßmann Date: Thu, 18 Feb 2016 17:16:23 +0000 (+0100) Subject: karo: tx53: don't return non-zero return value in board_init() upon CTRL-C detection X-Git-Tag: KARO-TX6-2016-03-10^2~1 X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=commitdiff_plain;h=5c61f468ba288ed73e306828c2fd645c9d506953;ds=sidebyside karo: tx53: don't return non-zero return value in board_init() upon CTRL-C detection --- diff --git a/board/karo/tx53/tx53.c b/board/karo/tx53/tx53.c index 082d2bdd76..ffc6101985 100644 --- a/board/karo/tx53/tx53.c +++ b/board/karo/tx53/tx53.c @@ -496,7 +496,7 @@ int board_init(void) printf("WDOG RESET detected; Skipping PMIC setup\n"); else printf(" detected; safeboot enabled\n"); - return 1; + return 0; } ret = setup_pmic_voltages();