diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-06 17:00:12 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-06 17:00:12 -0500 |
commit | cf3f33551b6d0acf8d21a53c9aa9cf8a0d73afa3 (patch) | |
tree | b657e1b85befbcdff5b2ee39e5ff026d6342e694 /arch/x86/kernel/hpet.c | |
parent | 69734b644bf19f20d2989e1a8e5bf59c837ee5c1 (diff) | |
parent | 1affc46cffad9f2bc7c9ffec85726446903a58f9 (diff) |
Merge branch 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
* 'x86-cleanups-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
x86: Use "do { } while(0)" for empty lock_cmos()/unlock_cmos() macros
x86: Use "do { } while(0)" for empty flush_tlb_fix_spurious_fault() macro
x86, CPU: Drop superfluous get_cpu_cap() prototype
arch/x86/mm/pageattr.c: Quiet sparse noise; local functions should be static
arch/x86/kernel/ptrace.c: Quiet sparse noise
x86: Use kmemdup() in copy_thread(), rather than duplicating its implementation
x86: Replace the EVT_TO_HPET_DEV() macro with an inline function
Diffstat (limited to 'arch/x86/kernel/hpet.c')
-rw-r--r-- | arch/x86/kernel/hpet.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index 1bb0bf4d92cd..07b0a56a754d 100644 --- a/arch/x86/kernel/hpet.c +++ b/arch/x86/kernel/hpet.c | |||
@@ -32,8 +32,6 @@ | |||
32 | #define HPET_MIN_CYCLES 128 | 32 | #define HPET_MIN_CYCLES 128 |
33 | #define HPET_MIN_PROG_DELTA (HPET_MIN_CYCLES + (HPET_MIN_CYCLES >> 1)) | 33 | #define HPET_MIN_PROG_DELTA (HPET_MIN_CYCLES + (HPET_MIN_CYCLES >> 1)) |
34 | 34 | ||
35 | #define EVT_TO_HPET_DEV(evt) container_of(evt, struct hpet_dev, evt) | ||
36 | |||
37 | /* | 35 | /* |
38 | * HPET address is set in acpi/boot.c, when an ACPI entry exists | 36 | * HPET address is set in acpi/boot.c, when an ACPI entry exists |
39 | */ | 37 | */ |
@@ -55,6 +53,11 @@ struct hpet_dev { | |||
55 | char name[10]; | 53 | char name[10]; |
56 | }; | 54 | }; |
57 | 55 | ||
56 | inline struct hpet_dev *EVT_TO_HPET_DEV(struct clock_event_device *evtdev) | ||
57 | { | ||
58 | return container_of(evtdev, struct hpet_dev, evt); | ||
59 | } | ||
60 | |||
58 | inline unsigned int hpet_readl(unsigned int a) | 61 | inline unsigned int hpet_readl(unsigned int a) |
59 | { | 62 | { |
60 | return readl(hpet_virt_address + a); | 63 | return readl(hpet_virt_address + a); |