ChangeSet 1.1749, 2004/05/18 16:00:04-07:00, greg@kroah.com USB: remove wait_ms() from usb.h as it's no longer needed. include/linux/usb.h | 11 ----------- 1 files changed, 11 deletions(-) diff -Nru a/include/linux/usb.h b/include/linux/usb.h --- a/include/linux/usb.h Tue May 18 17:05:07 2004 +++ b/include/linux/usb.h Tue May 18 17:05:07 2004 @@ -20,17 +20,6 @@ #include /* for struct completion */ #include /* for current && schedule_timeout */ - -static __inline__ void wait_ms(unsigned int ms) -{ - if(!in_interrupt()) { - current->state = TASK_UNINTERRUPTIBLE; - schedule_timeout(1 + ms * HZ / 1000); - } - else - mdelay(ms); -} - struct usb_device; struct usb_driver;