cur_timer         249 drivers/usb/chipidea/otg_fsm.c 	enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS;
cur_timer         265 drivers/usb/chipidea/otg_fsm.c 			for_each_set_bit(cur_timer, &enabled_timer_bits,
cur_timer         269 drivers/usb/chipidea/otg_fsm.c 					 ci->hr_timeouts[cur_timer]))
cur_timer         270 drivers/usb/chipidea/otg_fsm.c 					next_timer = cur_timer;
cur_timer         387 drivers/usb/chipidea/otg_fsm.c 	enum otg_fsm_timer cur_timer, next_timer = NUM_OTG_FSM_TIMERS;
cur_timer         395 drivers/usb/chipidea/otg_fsm.c 	for_each_set_bit(cur_timer, &enabled_timer_bits, NUM_OTG_FSM_TIMERS) {
cur_timer         396 drivers/usb/chipidea/otg_fsm.c 		if (ktime_compare(now, ci->hr_timeouts[cur_timer]) >= 0) {
cur_timer         397 drivers/usb/chipidea/otg_fsm.c 			ci->enabled_otg_timer_bits &= ~(1 << cur_timer);
cur_timer         398 drivers/usb/chipidea/otg_fsm.c 			if (otg_timer_handlers[cur_timer])
cur_timer         399 drivers/usb/chipidea/otg_fsm.c 				ret = otg_timer_handlers[cur_timer](ci);
cur_timer         402 drivers/usb/chipidea/otg_fsm.c 				ktime_before(ci->hr_timeouts[cur_timer],
cur_timer         404 drivers/usb/chipidea/otg_fsm.c 				next_timer = cur_timer;