aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/dma-debug.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/dma-debug.c b/lib/dma-debug.c
index 1a992089486c..d3da7edc034f 100644
--- a/lib/dma-debug.c
+++ b/lib/dma-debug.c
@@ -648,7 +648,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
648 err_printk(dev, NULL, "DMA-API: device driver tries " 648 err_printk(dev, NULL, "DMA-API: device driver tries "
649 "to sync DMA memory it has not allocated " 649 "to sync DMA memory it has not allocated "
650 "[device address=0x%016llx] [size=%llu bytes]\n", 650 "[device address=0x%016llx] [size=%llu bytes]\n",
651 addr, size); 651 (unsigned long long)addr, size);
652 goto out; 652 goto out;
653 } 653 }
654 654
@@ -666,7 +666,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
666 "DMA memory with different direction " 666 "DMA memory with different direction "
667 "[device address=0x%016llx] [size=%llu bytes] " 667 "[device address=0x%016llx] [size=%llu bytes] "
668 "[mapped with %s] [synced with %s]\n", 668 "[mapped with %s] [synced with %s]\n",
669 addr, entry->size, 669 (unsigned long long)addr, entry->size,
670 dir2name[entry->direction], 670 dir2name[entry->direction],
671 dir2name[direction]); 671 dir2name[direction]);
672 } 672 }
@@ -680,7 +680,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
680 "device read-only DMA memory for cpu " 680 "device read-only DMA memory for cpu "
681 "[device address=0x%016llx] [size=%llu bytes] " 681 "[device address=0x%016llx] [size=%llu bytes] "
682 "[mapped with %s] [synced with %s]\n", 682 "[mapped with %s] [synced with %s]\n",
683 addr, entry->size, 683 (unsigned long long)addr, entry->size,
684 dir2name[entry->direction], 684 dir2name[entry->direction],
685 dir2name[direction]); 685 dir2name[direction]);
686 686
@@ -690,7 +690,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
690 "device write-only DMA memory to device " 690 "device write-only DMA memory to device "
691 "[device address=0x%016llx] [size=%llu bytes] " 691 "[device address=0x%016llx] [size=%llu bytes] "
692 "[mapped with %s] [synced with %s]\n", 692 "[mapped with %s] [synced with %s]\n",
693 addr, entry->size, 693 (unsigned long long)addr, entry->size,
694 dir2name[entry->direction], 694 dir2name[entry->direction],
695 dir2name[direction]); 695 dir2name[direction]);
696 696