linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* PATCH: cassini printk format warning
@ 2006-01-17 18:39 Alan Cox
  2006-01-17 20:58 ` David S. Miller
  2006-01-17 21:34 ` Alexey Dobriyan
  0 siblings, 2 replies; 5+ messages in thread
From: Alan Cox @ 2006-01-17 18:39 UTC (permalink / raw)
  To: akpm, linux-kernel, asun

compwb is u64, %lx is not u64.

Signed-off-by: Alan Cox <alan@redhat.com>

--- linux.vanilla-2.6.16-rc1/drivers/net/cassini.c	2006-01-17 15:36:31.000000000 +0000
+++ linux-2.6.16-rc1/drivers/net/cassini.c	2006-01-17 18:23:50.398383416 +0000
@@ -1925,7 +1925,7 @@
 	u64 compwb = le64_to_cpu(cp->init_block->tx_compwb);
 #endif
 	if (netif_msg_intr(cp))
-		printk(KERN_DEBUG "%s: tx interrupt, status: 0x%x, %lx\n",
+		printk(KERN_DEBUG "%s: tx interrupt, status: 0x%x, %llx\n",
 			cp->dev->name, status, compwb);
 	/* process all the rings */
 	for (ring = 0; ring < N_TX_RINGS; ring++) {


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-01-17 23:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-01-17 18:39 PATCH: cassini printk format warning Alan Cox
2006-01-17 20:58 ` David S. Miller
2006-01-17 21:34 ` Alexey Dobriyan
2006-01-17 21:40   ` Andrew Morton
2006-01-17 23:15     ` David S. Miller

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).