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/hpet.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/hpet.c')
-rw-r--r-- | arch/i386/kernel/hpet.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/i386/kernel/hpet.c b/arch/i386/kernel/hpet.c index 23e7d2c5d253..c6737c35815d 100644 --- a/arch/i386/kernel/hpet.c +++ b/arch/i386/kernel/hpet.c | |||
@@ -6,7 +6,7 @@ | |||
6 | #include <asm/hpet.h> | 6 | #include <asm/hpet.h> |
7 | #include <asm/io.h> | 7 | #include <asm/io.h> |
8 | 8 | ||
9 | #define HPET_MASK 0xFFFFFFFF | 9 | #define HPET_MASK CLOCKSOURCE_MASK(32) |
10 | #define HPET_SHIFT 22 | 10 | #define HPET_SHIFT 22 |
11 | 11 | ||
12 | /* FSEC = 10^-15 NSEC = 10^-9 */ | 12 | /* FSEC = 10^-15 NSEC = 10^-9 */ |
@@ -23,7 +23,7 @@ static struct clocksource clocksource_hpet = { | |||
23 | .name = "hpet", | 23 | .name = "hpet", |
24 | .rating = 250, | 24 | .rating = 250, |
25 | .read = read_hpet, | 25 | .read = read_hpet, |
26 | .mask = (cycle_t)HPET_MASK, | 26 | .mask = HPET_MASK, |
27 | .mult = 0, /* set below */ | 27 | .mult = 0, /* set below */ |
28 | .shift = HPET_SHIFT, | 28 | .shift = HPET_SHIFT, |
29 | .is_continuous = 1, | 29 | .is_continuous = 1, |