Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 0d0fb0f9c5fddef4a10242fe3337f00f528a3099 authored by Linus Torvalds on 13 April 2010, 01:41:35 UTC
Linux 2.6.34-rc4
Tip revision: 0d0fb0f
swiotlb.h
#ifndef _ASM_X86_SWIOTLB_H
#define _ASM_X86_SWIOTLB_H

#include <linux/swiotlb.h>

#ifdef CONFIG_SWIOTLB
extern int swiotlb;
extern int __init pci_swiotlb_detect(void);
extern void __init pci_swiotlb_init(void);
#else
#define swiotlb 0
static inline int pci_swiotlb_detect(void)
{
	return 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 */
back to top