diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2010-05-26 17:44:20 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-05-27 12:12:53 -0400 |
commit | 99d1bd2c131b2da10cf451c69e5b8c51761a901b (patch) | |
tree | ffa4f67b8e092c0a19065160f7beada200334f01 /include/linux/dma-mapping.h | |
parent | 6d256fa8868b4509310ea201c2d2c04fabea96ab (diff) |
dma-mapping: remove deprecated dma_sync_single and dma_sync_sg API
Since 2.6.5, it had been commented, 'for backwards compatibility,
removed in 2.7.x'. Since 2.6.31, it have been marked as __deprecated.
I think that we can remove the API safely now.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/dma-mapping.h')
-rw-r--r-- | include/linux/dma-mapping.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/linux/dma-mapping.h b/include/linux/dma-mapping.h index 2ea149435c44..89b7e1a605b8 100644 --- a/include/linux/dma-mapping.h +++ b/include/linux/dma-mapping.h | |||
@@ -95,21 +95,6 @@ static inline int is_device_dma_capable(struct device *dev) | |||
95 | #include <asm-generic/dma-mapping-broken.h> | 95 | #include <asm-generic/dma-mapping-broken.h> |
96 | #endif | 96 | #endif |
97 | 97 | ||
98 | /* for backwards compatibility, removed soon */ | ||
99 | static inline void __deprecated dma_sync_single(struct device *dev, | ||
100 | dma_addr_t addr, size_t size, | ||
101 | enum dma_data_direction dir) | ||
102 | { | ||
103 | dma_sync_single_for_cpu(dev, addr, size, dir); | ||
104 | } | ||
105 | |||
106 | static inline void __deprecated dma_sync_sg(struct device *dev, | ||
107 | struct scatterlist *sg, int nelems, | ||
108 | enum dma_data_direction dir) | ||
109 | { | ||
110 | dma_sync_sg_for_cpu(dev, sg, nelems, dir); | ||
111 | } | ||
112 | |||
113 | static inline u64 dma_get_mask(struct device *dev) | 98 | static inline u64 dma_get_mask(struct device *dev) |
114 | { | 99 | { |
115 | if (dev && dev->dma_mask && *dev->dma_mask) | 100 | if (dev && dev->dma_mask && *dev->dma_mask) |