Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 138998
b: refs/heads/master
c: 93c36ed
h: refs/heads/master
v: v3
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Mar 30, 2009
1 parent b7b4ea9 commit e710187
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3a355cc61d41bc31cc23a57247df63dba80a6018
refs/heads/master: 93c36ed8348934b462044d2d60ab345055318933
8 changes: 4 additions & 4 deletions trunk/lib/dma-debug.c
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
err_printk(dev, NULL, "DMA-API: device driver tries "
"to sync DMA memory it has not allocated "
"[device address=0x%016llx] [size=%llu bytes]\n",
addr, size);
(unsigned long long)addr, size);
goto out;
}

Expand All @@ -666,7 +666,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
"DMA memory with different direction "
"[device address=0x%016llx] [size=%llu bytes] "
"[mapped with %s] [synced with %s]\n",
addr, entry->size,
(unsigned long long)addr, entry->size,
dir2name[entry->direction],
dir2name[direction]);
}
Expand All @@ -680,7 +680,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
"device read-only DMA memory for cpu "
"[device address=0x%016llx] [size=%llu bytes] "
"[mapped with %s] [synced with %s]\n",
addr, entry->size,
(unsigned long long)addr, entry->size,
dir2name[entry->direction],
dir2name[direction]);

Expand All @@ -690,7 +690,7 @@ static void check_sync(struct device *dev, dma_addr_t addr,
"device write-only DMA memory to device "
"[device address=0x%016llx] [size=%llu bytes] "
"[mapped with %s] [synced with %s]\n",
addr, entry->size,
(unsigned long long)addr, entry->size,
dir2name[entry->direction],
dir2name[direction]);

Expand Down

0 comments on commit e710187

Please sign in to comment.