Commit bfa0dfd9 authored by Chas Williams's avatar Chas Williams Committed by David S. Miller

[ATM]: [idt77252] fix dma_addr_t type error with CONFIG_HIGHMEM64G=y (by...

[ATM]: [idt77252] fix dma_addr_t type error with CONFIG_HIGHMEM64G=y (by "Randy.Dunlap" <rddunlap@osdl.org>)
parent 2ee0e091
......@@ -664,8 +664,8 @@ alloc_scq(struct idt77252_dev *card, int class)
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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment