Oliver Neukum wrote:

+void usb_uninterruptible_sleep_ms(int msecs)
+{
+       long timeout = msecs_to_jiffies(msecs);

while in <linux/time_t>

  static inline unsigned long msecs_to_jiffies(unsigned int m)

Shouldn't "msecs" be "unsigned"?  and then something like this

      long timeout = min(msecs_to_jiffies(msecs),MAX_SCHEDULE_TIMEOUT - 1);

to handle the difference in domains.

- Dave




------------------------------------------------------- This SF.Net email is sponsored by: SourceForge.net Broadband Sign-up now for SourceForge Broadband and get the fastest 6.0/768 connection for only $19.95/mo for the first 3 months! http://ads.osdn.com/?ad_id=2562&alloc_id=6184&op=click _______________________________________________ [EMAIL PROTECTED] To unsubscribe, use the last form field at: https://lists.sourceforge.net/lists/listinfo/linux-usb-devel

Reply via email to