diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2010-08-04 10:53:00 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2010-08-04 10:53:00 +0200 |
commit | e1b004c3ef9c59db5f013528628b51c8653155ec (patch) | |
tree | 2c60763d361df84131852c3351c7fc0cd754614d /include/linux/delay.h | |
parent | af5ab277ded04bd9bc6b048c5a2f0e7d70ef0867 (diff) | |
download | op-kernel-dev-e1b004c3ef9c59db5f013528628b51c8653155ec.zip op-kernel-dev-e1b004c3ef9c59db5f013528628b51c8653155ec.tar.gz |
Revert "timer: Added usleep[_range] timer"
This reverts commit 22b8f15c2f7130bb0386f548428df2ffd4e81903 to merge
an advanced version.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/delay.h')
-rw-r--r-- | include/linux/delay.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/delay.h b/include/linux/delay.h index 0e303d1..fd832c6 100644 --- a/include/linux/delay.h +++ b/include/linux/delay.h @@ -45,12 +45,6 @@ extern unsigned long lpj_fine; void calibrate_delay(void); void msleep(unsigned int msecs); unsigned long msleep_interruptible(unsigned int msecs); -void usleep_range(unsigned long min, unsigned long max); - -static inline void usleep(unsigned long usecs) -{ - usleep_range(usecs, usecs); -} static inline void ssleep(unsigned int seconds) { |