diff options
author | Thomas Gleixner <[email protected]> | 2019-06-23 15:23:44 +0200 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2019-06-28 00:57:16 +0200 |
commit | 7c4b0e0898ebff4d4821d5dd7a564903a1e88821 (patch) | |
tree | c488b1eda97537e5104442e7d9641e6624c6c9ac | |
parent | 9b0b28de837a3a59b409613d15e90d5569938945 (diff) |
x86/hpet: Remove pointless x86-64 specific #include
Nothing requires asm/pgtable.h here anymore.
Signed-off-by: Thomas Gleixner <[email protected]>
Reviewed-by: Ingo Molnar <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Ricardo Neri <[email protected]>
Cc: Ashok Raj <[email protected]>
Cc: Andi Kleen <[email protected]>
Cc: Suravee Suthikulpanit <[email protected]>
Cc: Stephane Eranian <[email protected]>
Cc: Ravi Shankar <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | arch/x86/kernel/hpet.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/x86/kernel/hpet.c b/arch/x86/kernel/hpet.c index daa97e14296b..76d63ed62ce8 100644 --- a/arch/x86/kernel/hpet.c +++ b/arch/x86/kernel/hpet.c @@ -71,10 +71,6 @@ static inline void hpet_writel(unsigned int d, unsigned int a) writel(d, hpet_virt_address + a); } -#ifdef CONFIG_X86_64 -#include <asm/pgtable.h> -#endif - static inline void hpet_set_mapping(void) { hpet_virt_address = ioremap_nocache(hpet_address, HPET_MMAP_SIZE); |