Commit 5b71bddb authored by Al Viro's avatar Al Viro Committed by Linus Torvalds

[PATCH] hpet: trivial __iomem annotations

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent c3cf83b7
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
/* FSEC = 10^-15 NSEC = 10^-9 */ /* FSEC = 10^-15 NSEC = 10^-9 */
#define FSEC_PER_NSEC 1000000 #define FSEC_PER_NSEC 1000000
static void *hpet_ptr; static void __iomem *hpet_ptr;
static cycle_t read_hpet(void) static cycle_t read_hpet(void)
{ {
...@@ -40,8 +40,7 @@ static int __init init_hpet_clocksource(void) ...@@ -40,8 +40,7 @@ static int __init init_hpet_clocksource(void)
return -ENODEV; return -ENODEV;
/* calculate the hpet address: */ /* calculate the hpet address: */
hpet_base = hpet_base = ioremap_nocache(hpet_address, HPET_MMAP_SIZE);
(void __iomem*)ioremap_nocache(hpet_address, HPET_MMAP_SIZE);
hpet_ptr = hpet_base + HPET_COUNTER; hpet_ptr = hpet_base + HPET_COUNTER;
/* calculate the frequency: */ /* calculate the frequency: */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment