diff options
author | Andrew Morton <akpm@osdl.org> | 2005-09-10 09:27:23 +0200 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-10 19:06:36 +0200 |
commit | 373016e9e1353f2af871993d27d00768f08cc883 (patch) | |
tree | 9f5c47b3f32a6c9d7d9c05dc3285b14b453ce09e | |
parent | [PATCH] include: update jiffies/{m,u}secs conversion functions (diff) | |
download | linux-373016e9e1353f2af871993d27d00768f08cc883.tar.xz linux-373016e9e1353f2af871993d27d00768f08cc883.zip |
[PATCH] time.h: remove ifdefs
Remove these ifdefs - there's no need to have more than one definition of
these multipliers anywhere.
Cc: Nishanth Aravamudan <nacc@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r-- | include/linux/time.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/linux/time.h b/include/linux/time.h index 36fb2ef13cff..8e83f4e778bb 100644 --- a/include/linux/time.h +++ b/include/linux/time.h @@ -29,18 +29,9 @@ struct timezone { /* Parameters used to convert the timespec values */ #define MSEC_PER_SEC (1000L) - -#ifndef USEC_PER_SEC #define USEC_PER_SEC (1000000L) -#endif - -#ifndef NSEC_PER_SEC #define NSEC_PER_SEC (1000000000L) -#endif - -#ifndef NSEC_PER_USEC #define NSEC_PER_USEC (1000L) -#endif static __inline__ int timespec_equal(struct timespec *a, struct timespec *b) { |