* [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
* Re: [PATCH] atm/idt77252: correct printk of dma_addr_t
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
0 siblings, 1 reply; 3+ messages in thread
From: chas williams @ 2004-02-04 19:05 UTC (permalink / raw)
To: davem, Randy.Dunlap; +Cc: netdev
dave, please apply the following to the 2.6 and 2.4 trees.
thanks!
# This is a BitKeeper generated patch for the following project:
# Project Name: Linux kernel tree
# This patch format is intended for GNU patch command version 2.5 or higher.
# This patch includes the following deltas:
# ChangeSet 1.1549 -> 1.1550
# drivers/atm/idt77252.c 1.21 -> 1.22
#
# The following is the BitKeeper ChangeSet Log
# --------------------------------------------
# 04/02/04 chas@relax.cmf.nrl.navy.mil 1.1550
# [ATM]: [idt77252] fix dma_addr_t type error with CONFIG_HIGHMEM64G=y (by "Randy.Dunlap" <rddunlap@osdl.org>)
# --------------------------------------------
#
diff -Nru a/drivers/atm/idt77252.c b/drivers/atm/idt77252.c
--- a/drivers/atm/idt77252.c Wed Feb 4 13:24:55 2004
+++ b/drivers/atm/idt77252.c Wed Feb 4 13:24:55 2004
@@ -664,8 +664,8 @@
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;
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] atm/idt77252: correct printk of dma_addr_t
2004-02-04 19:05 ` chas williams
@ 2004-02-05 7:22 ` David S. Miller
0 siblings, 0 replies; 3+ messages in thread
From: David S. Miller @ 2004-02-05 7:22 UTC (permalink / raw)
To: chas williams; +Cc: rddunlap, netdev
On Wed, 04 Feb 2004 14:05:00 -0500
chas williams (contractor) <chas@cmf.nrl.navy.mil> wrote:
> dave, please apply the following to the 2.6 and 2.4 trees.
Done, thanks Randy/Chas.
^ 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).