From: Inha Song Date: Fri, 22 May 2015 16:14:26 +0000 (+0200) Subject: usb: f_mass_storage: sleep_thread: decrease the interval for check ctrlc() X-Git-Tag: v2015.07-rc3~50^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=075020abbf00bb4c3640524d8986b751a3a51c4a;p=u-boot usb: f_mass_storage: sleep_thread: decrease the interval for check ctrlc() This change decreases the interval of calls to: - display busy indicator - check ctrlc() - check cable connection By this change, breaking the UMS command is more easy on Odroid XU3. Signed-off-by: Inha Song Cc: Lukasz Majewski Cc: Marek Vasut --- diff --git a/drivers/usb/gadget/f_mass_storage.c b/drivers/usb/gadget/f_mass_storage.c index d1bc5efa9b..abe9391d3d 100644 --- a/drivers/usb/gadget/f_mass_storage.c +++ b/drivers/usb/gadget/f_mass_storage.c @@ -671,7 +671,7 @@ static int sleep_thread(struct fsg_common *common) if (common->thread_wakeup_needed) break; - if (++i == 50000) { + if (++i == 20000) { busy_indicator(); i = 0; k++;