diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-05-09 00:02:06 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-09 12:49:33 -0700 |
commit | 29bd44337799e4cb85aec5157a9c88a0da66642a (patch) | |
tree | 454124f8ce577a814fde5edc08b26cdf1138f122 /include/asm-i386/msr.h | |
parent | 21c42bd8db2acd7c884d132efbf7aee9ca970b06 (diff) |
i386: remove unused rdtsc() macro
All users to the two-part rdtsc() macro have already switched to using
rdtscl() or rdtscll(). Remove the now-obsolete macro.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/asm-i386/msr.h')
-rw-r--r-- | include/asm-i386/msr.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/asm-i386/msr.h b/include/asm-i386/msr.h index 26861df52cc..c70773e2ff9 100644 --- a/include/asm-i386/msr.h +++ b/include/asm-i386/msr.h @@ -121,13 +121,6 @@ static inline void wrmsrl (unsigned long msr, unsigned long long val) __err; \ }) -#define rdtsc(low,high) \ - do { \ - u64 _l = native_read_tsc(); \ - (low) = (u32)_l; \ - (high) = _l >> 32; \ - } while(0) - #define rdtscl(low) \ do { \ (low) = native_read_tsc(); \ |