summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolger Brunck <[email protected]>2020-01-10 12:47:41 +0100
committerTom Rini <[email protected]>2020-01-23 07:29:58 -0500
commitac32e7d109112f848b3f0dc68cff48021e348e86 (patch)
tree7fc59e1f25c74f40a507124282aed0be7f1a77f5
parent3e6359830854bf1ed43f255d5248fbd267de26c4 (diff)
kmp204x: do not make FPGA config error fail board_early_init_r
This prevents the board from booting which is not the expected behavior. Signed-off-by: Valentin Longchamp <[email protected]> Signed-off-by: Holger Brunck <[email protected]> CC: Priyanka Jain <[email protected]>
-rw-r--r--board/keymile/kmp204x/kmp204x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/keymile/kmp204x/kmp204x.c b/board/keymile/kmp204x/kmp204x.c
index cfb23a53f74..c93fa3c62e0 100644
--- a/board/keymile/kmp204x/kmp204x.c
+++ b/board/keymile/kmp204x/kmp204x.c
@@ -138,7 +138,7 @@ int board_early_init_r(void)
/* enable Application Buffer */
qrio_enable_app_buffer();
- return ret;
+ return 0;
}
unsigned long get_board_sys_clk(unsigned long dummy)