usb: dwc3-msm: Specify ADC initialization delay in jiffies

commit 0fc1233d ("usb: dwc3-msm: Use ADC for ID pin detection") had a
minor bug in scheduling the delayed work queue when the ADC driver
isn't probed yet. The delay should be specified in jiffies, not msecs.

Change-Id: If8e255c52f81afdf32080e7a6b2682556966818d
Signed-off-by: Jack Pham <jackp@codeaurora.org>
diff --git a/drivers/usb/dwc3/dwc3-msm.c b/drivers/usb/dwc3/dwc3-msm.c
index cb1da06..327f39c 100644
--- a/drivers/usb/dwc3/dwc3-msm.c
+++ b/drivers/usb/dwc3/dwc3-msm.c
@@ -1810,7 +1810,8 @@
 
 	ret = qpnp_adc_tm_is_ready();
 	if (ret == -EPROBE_DEFER) {
-		queue_delayed_work(system_nrt_wq, to_delayed_work(w), 100);
+		queue_delayed_work(system_nrt_wq, to_delayed_work(w),
+					msecs_to_jiffies(100));
 		return;
 	}