diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/pci/drm/drmP.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sys/dev/pci/drm/drmP.h b/sys/dev/pci/drm/drmP.h index dd2cd02ca0f..a56e87abefb 100644 --- a/sys/dev/pci/drm/drmP.h +++ b/sys/dev/pci/drm/drmP.h @@ -287,20 +287,6 @@ mdelay(unsigned long msecs) DELAY(1000); } -static __inline void -udelay(unsigned long usecs) -{ - DELAY(usecs); -} - -static __inline void -mdelay(unsigned long msecs) -{ - int loops = msecs; - while (loops--) - DELAY(1000); -} - #define drm_can_sleep() (hz & 1) #define LOCK_TEST_WITH_RETURN(dev, file_priv) \ |