Skip to content

Commit

Permalink
[PATCH] ioc4: fix printk format warning
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Oct 28, 2006
1 parent 1d4d262 commit 760fe9a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/misc/ioc4.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 760fe9a

Please sign in to comment.