diff options
author | Jaehoon Chung <jh80.chung@samsung.com> | 2016-07-25 21:07:26 +0900 |
---|---|---|
committer | Jaehoon Chung <jh80.chung@samsung.com> | 2017-04-11 18:58:15 +0900 |
commit | 1bd918dcb97d48c238480aedc43b3800fc1266ff (patch) | |
tree | c670f26de40b6536e1c7971ef41704a430731c54 | |
parent | b320f681cb0a624ec93094e5d0efb279f087c7be (diff) | |
download | u-boot-1bd918dcb97d48c238480aedc43b3800fc1266ff.tar.gz u-boot-1bd918dcb97d48c238480aedc43b3800fc1266ff.tar.bz2 u-boot-1bd918dcb97d48c238480aedc43b3800fc1266ff.zip |
samsung: board: support the checking reboot mode
Support the checking reboot mode.
If there is no compatible or inform-num, then this function will not
do nothing.
Change-Id: Iefe5891919adb2ca224ecb4bfd2a441a0e2efd02
Signed-off-by: Jaehoon Chung <jh80.chung@samsung.com>
-rw-r--r-- | board/samsung/common/board.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/board/samsung/common/board.c b/board/samsung/common/board.c index 473aed4bbf..4d0c45876d 100644 --- a/board/samsung/common/board.c +++ b/board/samsung/common/board.c @@ -363,6 +363,7 @@ int misc_init_r(void) #ifdef CONFIG_PLATFORM_SETUP platform_setup(); #endif + check_reboot_mode(); #ifdef CONFIG_OF_MULTI if (!board_is_trats2()) return 0; |