summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2019-03-19 07:13:03 -0400
committerTom Rini <trini@konsulko.com>2019-03-19 07:13:03 -0400
commit7eddda453710d2405e05bb0b79612103608c244a (patch)
tree418474f64fa7c1791822efcad588e5826dff17e1 /cmd
parent374bf7af033aa326a9585c5ff878d206e90c0c1c (diff)
parentf402d268e8e17e9d6d1d9bf8a8b1f6e0b07718ef (diff)
Merge branch 'master' of git://git.denx.de/u-boot-usb
- Fastboot fixes
Diffstat (limited to 'cmd')
-rw-r--r--cmd/fastboot.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/fastboot.c b/cmd/fastboot.c
index 0be83b78ac..1b4215114d 100644
--- a/cmd/fastboot.c
+++ b/cmd/fastboot.c
@@ -13,6 +13,7 @@
#include <fastboot.h>
#include <net.h>
#include <usb.h>
+#include <watchdog.h>
static int do_fastboot_udp(int argc, char *const argv[],
uintptr_t buf_addr, size_t buf_size)
@@ -74,6 +75,7 @@ static int do_fastboot_usb(int argc, char *const argv[],
break;
if (ctrlc())
break;
+ WATCHDOG_RESET();
usb_gadget_handle_interrupts(controller_index);
}