Merge "mhi: core: Increase RDDM timeout to 350ms"

This commit is contained in:
qctecmdr
2021-12-17 06:59:19 -08:00
committed by Gerrit - the friendly Code Review server

View File

@@ -185,7 +185,7 @@ static int __mhi_download_rddm_in_panic(struct mhi_controller *mhi_cntrl)
enum mhi_ee ee;
const u32 delayus = 5000;
u32 retry = (mhi_cntrl->timeout_ms * 1000) / delayus;
const u32 rddm_timeout_us = 200000;
const u32 rddm_timeout_us = 350000;
int rddm_retry = rddm_timeout_us / delayus; /* time to enter rddm */
void __iomem *base = mhi_cntrl->bhie;