lkml.org 
[lkml]   [2002]   [Dec]   [5]   [last100]   RSS Feed
Views: [more markup]   [less markup]   [headers]   [forward]  
 
Messages in this thread
Patch in this message
/
DateThu, 05 Dec 2002 02:52:59 -0800
From wli@holomorp ...
Subject[warnings] [7/8] fix printk() type warning in drivers/net/tulip/interrupt.c
Cast to u64 and always print as %Lx to prevent type clashes.
Jeff, this is yours to ack.

===== drivers/net/tulip/interrupt.c 1.14 vs edited =====
--- 1.14/drivers/net/tulip/interrupt.c	Mon Oct 28 21:14:42 2002
+++ edited/drivers/net/tulip/interrupt.c	Thu Dec  5 01:22:15 2002
@@ -194,10 +194,10 @@
 				if (tp->rx_buffers[entry].mapping !=
 				    le32_to_cpu(tp->rx_ring[entry].buffer1)) {
 					printk(KERN_ERR "%s: Internal fault: The skbuff addresses "
-					       "do not match in tulip_rx: %08x vs. %08x %p / %p.\n",
+					       "do not match in tulip_rx: %08x vs. %08Lx %p / %p.\n",
 					       dev->name,
 					       le32_to_cpu(tp->rx_ring[entry].buffer1),
-					       tp->rx_buffers[entry].mapping,
+					       (u64)tp->rx_buffers[entry].mapping,
 					       skb->head, temp);
 				}
 #endif
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2005-03-22 11:31    [W:0.388 / U:0.790 seconds]
©2003-2008 Jasper Spaans