public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Fix starfire compiler warning on PAE
@ 2003-01-05  5:08 Martin J. Bligh
  2003-01-06 20:57 ` Ion Badulescu
  0 siblings, 1 reply; 9+ messages in thread
From: Martin J. Bligh @ 2003-01-05  5:08 UTC (permalink / raw)
  To: Jeff Garzik; +Cc: linux-kernel

diff -urpN -X /home/fletch/.diff.exclude 
12-boot_error/drivers/net/starfire.c 
19-fix_starfire_warning/drivers/net/starfire.c
--- 12-boot_error/drivers/net/starfire.c	Fri Dec 13 23:17:59 2002
+++ 19-fix_starfire_warning/drivers/net/starfire.c	Thu Jan  2 22:18:18 2003
@@ -1847,15 +1847,15 @@ static int netdev_close(struct net_devic

 #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 %9.9Lx:\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 %9.9Lx -> %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",


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

end of thread, other threads:[~2003-02-10 22:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-01-05  5:08 [PATCH] Fix starfire compiler warning on PAE Martin J. Bligh
2003-01-06 20:57 ` Ion Badulescu
2003-01-06 21:14   ` Martin J. Bligh
2003-01-06 21:35     ` Ion Badulescu
2003-01-06 21:45       ` Martin J. Bligh
2003-01-06 22:25         ` Ion Badulescu
2003-02-10  3:34       ` Testing new starfire driver for 2.5 Martin J. Bligh
2003-02-10 21:55         ` Ion Badulescu
2003-02-10 22:24           ` Martin J. Bligh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox