diff options
Diffstat (limited to 'drivers/misc/ioc4.c')
-rw-r--r-- | drivers/misc/ioc4.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/misc/ioc4.c b/drivers/misc/ioc4.c index 1c3c14a3839c..b995a15b7526 100644 --- a/drivers/misc/ioc4.c +++ b/drivers/misc/ioc4.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/ktime.h> | 32 | #include <linux/ktime.h> |
33 | #include <linux/mutex.h> | 33 | #include <linux/mutex.h> |
34 | #include <linux/time.h> | 34 | #include <linux/time.h> |
35 | #include <asm/io.h> | ||
35 | 36 | ||
36 | /*************** | 37 | /*************** |
37 | * Definitions * | 38 | * Definitions * |
@@ -209,8 +210,8 @@ ioc4_clock_calibrate(struct ioc4_driver_data *idd) | |||
209 | 210 | ||
210 | do_div(ns, IOC4_EXTINT_COUNT_DIVISOR); | 211 | do_div(ns, IOC4_EXTINT_COUNT_DIVISOR); |
211 | printk(KERN_DEBUG | 212 | printk(KERN_DEBUG |
212 | "IOC4 %s: PCI clock is %lld ns.\n", | 213 | "IOC4 %s: PCI clock is %llu ns.\n", |
213 | pci_name(idd->idd_pdev), ns); | 214 | pci_name(idd->idd_pdev), (unsigned long long)ns); |
214 | } | 215 | } |
215 | 216 | ||
216 | /* Remember results. We store the extint clock period rather | 217 | /* Remember results. We store the extint clock period rather |