aboutsummaryrefslogtreecommitdiff
path: root/board/lg/sniper/sniper.c
diff options
context:
space:
mode:
authorRoman Kovalivskyi <roman.kovalivskyi@globallogic.com>2020-07-28 23:35:32 +0300
committerMarek Vasut <marex@denx.de>2020-09-01 14:47:43 +0200
commit851737ab8922742732bea5f70407cb95cafcb3ee (patch)
treebde70e242207d0cf54401537d3de4f5d1f6abd64 /board/lg/sniper/sniper.c
parent73f4ebb659df4996e154b17f14866fb166447be0 (diff)
downloadu-boot-851737ab8922742732bea5f70407cb95cafcb3ee.zip
u-boot-851737ab8922742732bea5f70407cb95cafcb3ee.tar.gz
u-boot-851737ab8922742732bea5f70407cb95cafcb3ee.tar.bz2
fastboot: Extend fastboot_set_reboot_flag with reboot reason
Extend fastboot_set_reboot_flag arguments with reboot reason so that it could handle different reboot cases in future. Signed-off-by: Roman Kovalivskyi <roman.kovalivskyi@globallogic.com>
Diffstat (limited to 'board/lg/sniper/sniper.c')
-rw-r--r--board/lg/sniper/sniper.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/board/lg/sniper/sniper.c b/board/lg/sniper/sniper.c
index b08a267..dff1590 100644
--- a/board/lg/sniper/sniper.c
+++ b/board/lg/sniper/sniper.c
@@ -9,6 +9,7 @@
#include <common.h>
#include <dm.h>
#include <env.h>
+#include <fastboot.h>
#include <init.h>
#include <linux/ctype.h>
#include <linux/usb/musb.h>
@@ -175,8 +176,11 @@ void reset_misc(void)
omap_reboot_mode_store(reboot_mode);
}
-int fastboot_set_reboot_flag(void)
+int fastboot_set_reboot_flag(enum fastboot_reboot_reason reason)
{
+ if (reason != FASTBOOT_REBOOT_REASON_BOOTLOADER)
+ return -ENOTSUPP;
+
return omap_reboot_mode_store("b");
}