diff options
| author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2011-10-23 19:57:02 -0700 | 
|---|---|---|
| committer | Felipe Balbi <balbi@ti.com> | 2011-12-12 11:44:57 +0200 | 
| commit | a49a88f108516fd5ae24e26df5a63beb847807df (patch) | |
| tree | 410cb24207a4c0c0e909244bd5e7ddb5bb96a3f7 | |
| parent | 25234b46be2a1688d38fb55ed9d7e3f2cc41c9af (diff) | |
| download | olio-linux-3.10-a49a88f108516fd5ae24e26df5a63beb847807df.tar.xz olio-linux-3.10-a49a88f108516fd5ae24e26df5a63beb847807df.zip  | |
usb: gadget: renesas_usbhs: tidyup the unit of detection_delay
detection_delay was assumed as msec
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
| -rw-r--r-- | drivers/usb/renesas_usbhs/common.c | 3 | ||||
| -rw-r--r-- | include/linux/usb/renesas_usbhs.h | 2 | 
2 files changed, 3 insertions, 2 deletions
diff --git a/drivers/usb/renesas_usbhs/common.c b/drivers/usb/renesas_usbhs/common.c index 1ce32d92e72..b4cf555ce58 100644 --- a/drivers/usb/renesas_usbhs/common.c +++ b/drivers/usb/renesas_usbhs/common.c @@ -388,7 +388,8 @@ int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev)  	 * To make sure safety context,  	 * use workqueue for usbhs_notify_hotplug  	 */ -	schedule_delayed_work(&priv->notify_hotplug_work, delay); +	schedule_delayed_work(&priv->notify_hotplug_work, +			      msecs_to_jiffies(delay));  	return 0;  } diff --git a/include/linux/usb/renesas_usbhs.h b/include/linux/usb/renesas_usbhs.h index e5a40c31854..c9fceb9f769 100644 --- a/include/linux/usb/renesas_usbhs.h +++ b/include/linux/usb/renesas_usbhs.h @@ -118,7 +118,7 @@ struct renesas_usbhs_driver_param {  	 *  	 * delay time from notify_hotplug callback  	 */ -	int detection_delay; +	int detection_delay; /* msec */  	/*  	 * option:  |