mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 10:11:36 +00:00
1da4f9894c
Impact: cleanup This replaces architecture-specific swiotlb.h (X86 and IA64) with linux/swiotlb.h. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> Signed-off-by: Ingo Molnar <mingo@elte.hu>
23 lines
386 B
C
23 lines
386 B
C
#ifndef _ASM_X86_SWIOTLB_H
|
|
#define _ASM_X86_SWIOTLB_H
|
|
|
|
#include <linux/swiotlb.h>
|
|
|
|
/* SWIOTLB interface */
|
|
|
|
extern int swiotlb_force;
|
|
|
|
#ifdef CONFIG_SWIOTLB
|
|
extern int swiotlb;
|
|
extern void pci_swiotlb_init(void);
|
|
#else
|
|
#define swiotlb 0
|
|
static inline void pci_swiotlb_init(void)
|
|
{
|
|
}
|
|
#endif
|
|
|
|
static inline void dma_mark_clean(void *addr, size_t size) {}
|
|
|
|
#endif /* _ASM_X86_SWIOTLB_H */
|