mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 11:46:19 +00:00
[PATCH] ioc4: fix printk format warning
Fix printk format warning: drivers/misc/ioc4.c:213: warning: long long int format, u64 arg (arg 3) Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com> Acked-by: Brent Casavant <bcasavan@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
1d4d262769
commit
760fe9ad16
1 changed files with 2 additions and 2 deletions
|
@ -210,8 +210,8 @@ ioc4_clock_calibrate(struct ioc4_driver_data *idd)
|
|||
|
||||
do_div(ns, IOC4_EXTINT_COUNT_DIVISOR);
|
||||
printk(KERN_DEBUG
|
||||
"IOC4 %s: PCI clock is %lld ns.\n",
|
||||
pci_name(idd->idd_pdev), ns);
|
||||
"IOC4 %s: PCI clock is %llu ns.\n",
|
||||
pci_name(idd->idd_pdev), (unsigned long long)ns);
|
||||
}
|
||||
|
||||
/* Remember results. We store the extint clock period rather
|
||||
|
|
Loading…
Reference in a new issue