netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] atm/idt77252: correct printk of dma_addr_t
@ 2004-02-03 23:34 Randy.Dunlap
  2004-02-04 19:05 ` chas williams
  0 siblings, 1 reply; 3+ messages in thread
From: Randy.Dunlap @ 2004-02-03 23:34 UTC (permalink / raw)
  To: chas; +Cc: netdev


description:	fix dma_addr_t type error with CONFIG_HIGHMEM64G=y;
product_versions: linux-262-rc3

diffstat:=
 drivers/atm/idt77252.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff -Naurp ./drivers/atm/idt77252.c~idt_dma ./drivers/atm/idt77252.c
--- ./drivers/atm/idt77252.c~idt_dma	2004-01-08 22:59:33.000000000 -0800
+++ ./drivers/atm/idt77252.c	2004-02-03 14:14:08.000000000 -0800
@@ -664,8 +664,8 @@ alloc_scq(struct idt77252_dev *card, int
 	skb_queue_head_init(&scq->transmit);
 	skb_queue_head_init(&scq->pending);
 
-	TXPRINTK("idt77252: SCQ: base 0x%p, next 0x%p, last 0x%p, paddr %08x\n",
-		 scq->base, scq->next, scq->last, scq->paddr);
+	TXPRINTK("idt77252: SCQ: base 0x%p, next 0x%p, last 0x%p, paddr %08llx\n",
+		 scq->base, scq->next, scq->last, (unsigned long long)scq->paddr);
 
 	return scq;
 }


--
~Randy

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

end of thread, other threads:[~2004-02-05  7:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-02-03 23:34 [PATCH] atm/idt77252: correct printk of dma_addr_t Randy.Dunlap
2004-02-04 19:05 ` chas williams
2004-02-05  7:22   ` 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).