Commit 93c36ed8 authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

dma-debug: fix printk formats (i386)

Fix printk format warnings in dma-debug:

  lib/dma-debug.c:645: warning: format '%016llx' expects type 'long long unsigned int', but argument 6 has type 'dma_addr_t'
  lib/dma-debug.c:662: warning: format '%016llx' expects type 'long long unsigned int', but argument 6 has type 'dma_addr_t'
  lib/dma-debug.c:676: warning: format '%016llx' expects type 'long long unsigned int', but argument 6 has type 'dma_addr_t'
  lib/dma-debug.c:686: warning: format '%016llx' expects type 'long long unsigned int', but argument 6 has type 'dma_addr_t'
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 3a355cc6
...@@ -648,7 +648,7 @@ static void check_sync(struct device *dev, dma_addr_t addr, ...@@ -648,7 +648,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
err_printk(dev, NULL, "DMA-API: device driver tries " err_printk(dev, NULL, "DMA-API: device driver tries "
"to sync DMA memory it has not allocated " "to sync DMA memory it has not allocated "
"[device address=0x%016llx] [size=%llu bytes]\n", "[device address=0x%016llx] [size=%llu bytes]\n",
addr, size); (unsigned long long)addr, size);
goto out; goto out;
} }
...@@ -666,7 +666,7 @@ static void check_sync(struct device *dev, dma_addr_t addr, ...@@ -666,7 +666,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
"DMA memory with different direction " "DMA memory with different direction "
"[device address=0x%016llx] [size=%llu bytes] " "[device address=0x%016llx] [size=%llu bytes] "
"[mapped with %s] [synced with %s]\n", "[mapped with %s] [synced with %s]\n",
addr, entry->size, (unsigned long long)addr, entry->size,
dir2name[entry->direction], dir2name[entry->direction],
dir2name[direction]); dir2name[direction]);
} }
...@@ -680,7 +680,7 @@ static void check_sync(struct device *dev, dma_addr_t addr, ...@@ -680,7 +680,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
"device read-only DMA memory for cpu " "device read-only DMA memory for cpu "
"[device address=0x%016llx] [size=%llu bytes] " "[device address=0x%016llx] [size=%llu bytes] "
"[mapped with %s] [synced with %s]\n", "[mapped with %s] [synced with %s]\n",
addr, entry->size, (unsigned long long)addr, entry->size,
dir2name[entry->direction], dir2name[entry->direction],
dir2name[direction]); dir2name[direction]);
...@@ -690,7 +690,7 @@ static void check_sync(struct device *dev, dma_addr_t addr, ...@@ -690,7 +690,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
"device write-only DMA memory to device " "device write-only DMA memory to device "
"[device address=0x%016llx] [size=%llu bytes] " "[device address=0x%016llx] [size=%llu bytes] "
"[mapped with %s] [synced with %s]\n", "[mapped with %s] [synced with %s]\n",
addr, entry->size, (unsigned long long)addr, entry->size,
dir2name[entry->direction], dir2name[entry->direction],
dir2name[direction]); dir2name[direction]);
......
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