2009-01-05 14:36:12 +00:00
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
|
2009-01-27 14:43:59 +00:00
|
|
|
/* Set this to 1 if there is a HW IOMMU in the system */
|
|
|
|
int iommu_detected __read_mostly;
|
|
|
|
|
2009-01-05 14:59:02 +00:00
|
|
|
struct dma_map_ops *dma_ops;
|
2009-01-05 14:36:12 +00:00
|
|
|
EXPORT_SYMBOL(dma_ops);
|
2009-01-05 14:36:16 +00:00
|
|
|
|
2009-01-05 14:59:02 +00:00
|
|
|
struct dma_map_ops *dma_get_ops(struct device *dev)
|
2009-01-05 14:36:16 +00:00
|
|
|
{
|
|
|
|
return dma_ops;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dma_get_ops);
|