diff options
author | Jim Cromie <jim.cromie@gmail.com> | 2006-06-26 03:25:15 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-26 12:58:21 -0400 |
commit | 7f9f303aa33c7acc7b4aa9ebea25cbd990bc707b (patch) | |
tree | b5916e6b018356afdb5c8687e554a049532633bd /arch/i386/kernel/i8253.c | |
parent | 7d622d4794490cef933c20e4a6279e43e03fafad (diff) |
[PATCH] generic-time: add macro to simplify/hide mask constants
Add a CLOCKSOURCE_MASK macro to simplify initializing the mask for a struct
clocksource, and use it to replace literal mask constants in the various
clocksource drivers.
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
Acked-by: John Stultz <johnstul@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/i386/kernel/i8253.c')
-rw-r--r-- | arch/i386/kernel/i8253.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/i386/kernel/i8253.c b/arch/i386/kernel/i8253.c index 5b13739a7ff4..38aa7f19f1d3 100644 --- a/arch/i386/kernel/i8253.c +++ b/arch/i386/kernel/i8253.c | |||
@@ -69,7 +69,7 @@ static struct clocksource clocksource_pit = { | |||
69 | .name = "pit", | 69 | .name = "pit", |
70 | .rating = 110, | 70 | .rating = 110, |
71 | .read = pit_read, | 71 | .read = pit_read, |
72 | .mask = (cycle_t)-1, | 72 | .mask = CLOCKSOURCE_MASK(64), |
73 | .mult = 0, | 73 | .mult = 0, |
74 | .shift = 20, | 74 | .shift = 20, |
75 | }; | 75 | }; |