diff options
author | Li Jun <b47624@freescale.com> | 2014-10-16 22:18:01 +0800 |
---|---|---|
committer | Peter Chen <peter.chen@freescale.com> | 2014-10-20 16:07:16 +0800 |
commit | b728893bae102ee94399981a37650a7a62cf9d7c (patch) | |
tree | 58f25c4b79014f31127cbd9137291b567ca635d2 /include | |
parent | 573c338eb28765c6351c3c2ed30cac6a2fef97a8 (diff) |
MLK-9618-8 usb: chipidea: otg: add A idle to B disconnect timer
B-device detects that bus is idle for more than TB_AIDL_BDIS min and begins HNP
by turning off pullup on DP, this allows the bus to discharge to the SE0 state.
This timer was missed and failed with one PET test, this patch is to fix this
timing issue.
Signed-off-by: Li Jun <b47624@freescale.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/usb/otg-fsm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/usb/otg-fsm.h b/include/linux/usb/otg-fsm.h index 46bb42b60346..37366ff1eb04 100644 --- a/include/linux/usb/otg-fsm.h +++ b/include/linux/usb/otg-fsm.h @@ -56,6 +56,7 @@ enum otg_fsm_timer { A_AIDL_BDIS, B_ASE0_BRST, A_BIDL_ADIS, + B_AIDL_BDIS, /* Auxiliary timers */ B_SE0_SRP, |