• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
1#ifndef ASM_IA64__SWIOTLB_H
2#define ASM_IA64__SWIOTLB_H
3
4#include <linux/dma-mapping.h>
5#include <linux/swiotlb.h>
6
7#ifdef CONFIG_SWIOTLB
8extern int swiotlb;
9extern void pci_swiotlb_init(void);
10#else
11#define swiotlb 0
12static inline void pci_swiotlb_init(void)
13{
14}
15#endif
16
17#endif /* ASM_IA64__SWIOTLB_H */
18