mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-06 22:44:40 +00:00
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>
This commit is contained in:
parent
6d256fa886
commit
99d1bd2c13
1 changed files with 0 additions and 15 deletions
|
@ -95,21 +95,6 @@ static inline int is_device_dma_capable(struct device *dev)
|
||||||
#include <asm-generic/dma-mapping-broken.h>
|
#include <asm-generic/dma-mapping-broken.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* for backwards compatibility, removed soon */
|
|
||||||
static inline void __deprecated dma_sync_single(struct device *dev,
|
|
||||||
dma_addr_t addr, size_t size,
|
|
||||||
enum dma_data_direction dir)
|
|
||||||
{
|
|
||||||
dma_sync_single_for_cpu(dev, addr, size, dir);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline void __deprecated dma_sync_sg(struct device *dev,
|
|
||||||
struct scatterlist *sg, int nelems,
|
|
||||||
enum dma_data_direction dir)
|
|
||||||
{
|
|
||||||
dma_sync_sg_for_cpu(dev, sg, nelems, dir);
|
|
||||||
}
|
|
||||||
|
|
||||||
static inline u64 dma_get_mask(struct device *dev)
|
static inline u64 dma_get_mask(struct device *dev)
|
||||||
{
|
{
|
||||||
if (dev && dev->dma_mask && *dev->dma_mask)
|
if (dev && dev->dma_mask && *dev->dma_mask)
|
||||||
|
|
Loading…
Add table
Reference in a new issue