Merge "asoc: codec: wcd9378: increase delay for gpio reset"

This commit is contained in:
QCTECMDR Service 2024-07-24 00:59:52 -07:00 committed by Gerrit - the friendly Code Review server
commit b030905bec

View File

@ -4132,7 +4132,7 @@ static int wcd9378_reset(struct device *dev)
return -EPROBE_DEFER;
}
/* 20us sleep required after pulling the reset gpio to LOW */
usleep_range(20, 30);
usleep_range(80, 85);
rc = msm_cdc_pinctrl_select_active_state(wcd9378->rst_np);
if (rc) {
@ -4141,7 +4141,7 @@ static int wcd9378_reset(struct device *dev)
return -EPROBE_DEFER;
}
/* 20us sleep required after pulling the reset gpio to HIGH */
usleep_range(20, 30);
usleep_range(80, 85);
return rc;
}