Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 190776
b: refs/heads/master
c: f33d7e2
h: refs/heads/master
v: v3
  • Loading branch information
FUJITA Tomonori authored and Linus Torvalds committed May 12, 2010
1 parent 5ac198f commit 08eebb0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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: fc2a093e7ad23e935aa29e349bc27173c92f1a95
refs/heads/master: f33d7e2d2d113a63772bbc993cdec3b5327f0ef1
4 changes: 2 additions & 2 deletions trunk/include/asm-generic/dma-mapping-common.h
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ static inline void dma_sync_single_range_for_cpu(struct device *dev,
debug_dma_sync_single_range_for_cpu(dev, addr, offset, size, dir);

} else
dma_sync_single_for_cpu(dev, addr, size, dir);
dma_sync_single_for_cpu(dev, addr + offset, size, dir);
}

static inline void dma_sync_single_range_for_device(struct device *dev,
Expand All @@ -148,7 +148,7 @@ static inline void dma_sync_single_range_for_device(struct device *dev,
debug_dma_sync_single_range_for_device(dev, addr, offset, size, dir);

} else
dma_sync_single_for_device(dev, addr, size, dir);
dma_sync_single_for_device(dev, addr + offset, size, dir);
}

static inline void
Expand Down

0 comments on commit 08eebb0

Please sign in to comment.