diff options
Diffstat (limited to 'drivers/atm')
-rw-r--r-- | drivers/atm/ambassador.c | 2 | ||||
-rw-r--r-- | drivers/atm/idt77252.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/atm/ambassador.c b/drivers/atm/ambassador.c index f8f41e0e8a8c..89b30f32ba68 100644 --- a/drivers/atm/ambassador.c +++ b/drivers/atm/ambassador.c | |||
@@ -802,7 +802,7 @@ static void fill_rx_pool (amb_dev * dev, unsigned char pool, | |||
802 | } | 802 | } |
803 | // cast needed as there is no %? for pointer differences | 803 | // cast needed as there is no %? for pointer differences |
804 | PRINTD (DBG_SKB, "allocated skb at %p, head %p, area %li", | 804 | PRINTD (DBG_SKB, "allocated skb at %p, head %p, area %li", |
805 | skb, skb->head, (long) (skb_end_pointer(skb) - skb->head)); | 805 | skb, skb->head, (long) skb_end_offset(skb)); |
806 | rx.handle = virt_to_bus (skb); | 806 | rx.handle = virt_to_bus (skb); |
807 | rx.host_address = cpu_to_be32 (virt_to_bus (skb->data)); | 807 | rx.host_address = cpu_to_be32 (virt_to_bus (skb->data)); |
808 | if (rx_give (dev, &rx, pool)) | 808 | if (rx_give (dev, &rx, pool)) |
diff --git a/drivers/atm/idt77252.c b/drivers/atm/idt77252.c index 1c052127548c..8974bd2b961e 100644 --- a/drivers/atm/idt77252.c +++ b/drivers/atm/idt77252.c | |||
@@ -1258,7 +1258,7 @@ idt77252_rx_raw(struct idt77252_dev *card) | |||
1258 | tail = readl(SAR_REG_RAWCT); | 1258 | tail = readl(SAR_REG_RAWCT); |
1259 | 1259 | ||
1260 | pci_dma_sync_single_for_cpu(card->pcidev, IDT77252_PRV_PADDR(queue), | 1260 | pci_dma_sync_single_for_cpu(card->pcidev, IDT77252_PRV_PADDR(queue), |
1261 | skb_end_pointer(queue) - queue->head - 16, | 1261 | skb_end_offset(queue) - 16, |
1262 | PCI_DMA_FROMDEVICE); | 1262 | PCI_DMA_FROMDEVICE); |
1263 | 1263 | ||
1264 | while (head != tail) { | 1264 | while (head != tail) { |