diff options
| author | Holger Brunck <[email protected]> | 2020-01-10 12:47:41 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2020-01-23 07:29:58 -0500 |
| commit | ac32e7d109112f848b3f0dc68cff48021e348e86 (patch) | |
| tree | 7fc59e1f25c74f40a507124282aed0be7f1a77f5 | |
| parent | 3e6359830854bf1ed43f255d5248fbd267de26c4 (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.c | 2 |
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) |
