projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
63ae96b
)
ia64: remove unnecessary sync_single_range_* in swiotlb_dma_ops
author
FUJITA Tomonori
<
[email protected]
>
Wed, 26 May 2010 21:44:15 +0000
(14:44 -0700)
committer
Linus Torvalds
<
[email protected]
>
Thu, 27 May 2010 16:12:52 +0000
(09:12 -0700)
sync_single_range_for_cpu and sync_single_range_for_device hooks in
swiotlb_dma_ops are unnecessary because sync_single_for_cpu and
sync_single_for_device are used there.
Signed-off-by: FUJITA Tomonori <
[email protected]
>
Cc: Tony Luck <
[email protected]
>
Cc: Fenghua Yu <
[email protected]
>
Reviewed-by: Konrad Rzeszutek Wilk <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/ia64/kernel/pci-swiotlb.c
patch
|
blob
|
history
diff --git
a/arch/ia64/kernel/pci-swiotlb.c
b/arch/ia64/kernel/pci-swiotlb.c
index 3095654f9ab394839b9ae52509b5ec786c9f7837..d9485d952ed0a8c26fe8677b09e5ba249a5f9c25 100644
(file)
--- a/
arch/ia64/kernel/pci-swiotlb.c
+++ b/
arch/ia64/kernel/pci-swiotlb.c
@@
-31,8
+31,6
@@
struct dma_map_ops swiotlb_dma_ops = {
.unmap_sg = swiotlb_unmap_sg_attrs,
.sync_single_for_cpu = swiotlb_sync_single_for_cpu,
.sync_single_for_device = swiotlb_sync_single_for_device,
- .sync_single_range_for_cpu = swiotlb_sync_single_range_for_cpu,
- .sync_single_range_for_device = swiotlb_sync_single_range_for_device,
.sync_sg_for_cpu = swiotlb_sync_sg_for_cpu,
.sync_sg_for_device = swiotlb_sync_sg_for_device,
.dma_supported = swiotlb_dma_supported,