2009-01-05 17:36:12 +03:00
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
|
2009-01-05 17:59:02 +03:00
|
|
|
struct dma_map_ops *dma_ops;
|
2009-01-05 17:36:12 +03:00
|
|
|
EXPORT_SYMBOL(dma_ops);
|
2009-01-05 17:36:16 +03:00
|
|
|
|
2009-01-05 17:59:02 +03:00
|
|
|
struct dma_map_ops *dma_get_ops(struct device *dev)
|
2009-01-05 17:36:16 +03:00
|
|
|
{
|
|
|
|
return dma_ops;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(dma_get_ops);
|