[warnings] [5/8] fix printk() type warning in drivers/net/starfire.c

wli@holomorphy.com
Thu, 05 Dec 2002 02:52:59 -0800


Change the format to %Lx and cast to u64 unconditionally.
Jeff, this is yours to ack.

===== drivers/net/starfire.c 1.22 vs edited =====
--- 1.22/drivers/net/starfire.c Wed Nov 27 23:09:51 2002
+++ edited/drivers/net/starfire.c Thu Dec 5 01:15:06 2002
@@ -1847,15 +1847,15 @@

#ifdef __i386__
if (debug > 2) {
- printk("\n"KERN_DEBUG" Tx ring at %8.8x:\n",
- np->tx_ring_dma);
+ printk("\n"KERN_DEBUG" Tx ring at %8.8Lx:\n",
+ (u64)np->tx_ring_dma);
for (i = 0; i < 8 /* TX_RING_SIZE is huge! */; i++)
printk(KERN_DEBUG " #%d desc. %8.8x %8.8x -> %8.8x.\n",
i, le32_to_cpu(np->tx_ring[i].status),
le32_to_cpu(np->tx_ring[i].first_addr),
le32_to_cpu(np->tx_done_q[i].status));
- printk(KERN_DEBUG " Rx ring at %8.8x -> %p:\n",
- np->rx_ring_dma, np->rx_done_q);
+ printk(KERN_DEBUG " Rx ring at %8.8Lx -> %p:\n",
+ (u64)np->rx_ring_dma, np->rx_done_q);
if (np->rx_done_q)
for (i = 0; i < 8 /* RX_RING_SIZE */; i++) {
printk(KERN_DEBUG " #%d desc. %8.8x -> %8.8x\n",
-
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/